code
stringlengths
1
1.05M
repo_name
stringlengths
6
83
path
stringlengths
3
242
language
stringclasses
222 values
license
stringclasses
20 values
size
int64
1
1.05M
/** * @file wdg.h * @copyright Copyright (C) 2015-2018 Alibaba Group Holding Limited */ #ifndef HAL_WDG_H #define HAL_WDG_H #ifdef __cplusplus extern "C" { #endif /** @addtogroup hal_wdg WDG * wdg hal API. * * @{ */ #include <stdint.h> /* Define wdt expired time */ typedef struct { uint32_t timeout; /...
YifuLiu/AliOS-Things
components/drivers/peripheral/watchdog/include/aos/hal/wdg.h
C
apache-2.0
1,178
/* * Copyright (C) 2020-2021 Alibaba Group Holding Limited */ #ifndef AOS_WATCHDOG_H #define AOS_WATCHDOG_H #ifdef AOS_KERNEL_BUILD #include <aos/device.h> #else #include <stdint.h> #endif /** * @defgroup watchdog_api Watchdog * @ingroup driver_api * @brief AOS API for watchdog. * @{ */ #define AOS_WATCHDOG_...
YifuLiu/AliOS-Things
components/drivers/peripheral/watchdog/include/aos/watchdog.h
C
apache-2.0
2,451
/* * Copyright (C) 2020-2021 Alibaba Group Holding Limited */ #ifndef AOS_WATCHDOG_CORE_H #define AOS_WATCHDOG_CORE_H #include <aos/device_core.h> #include <aos/watchdog.h> struct aos_watchdog_ops; typedef struct { aos_dev_t dev; uint32_t timeout; /* must be initialized before registration */ con...
YifuLiu/AliOS-Things
components/drivers/peripheral/watchdog/include/aos/watchdog_core.h
C
apache-2.0
1,021
/* * Copyright (C) 2015-2021 Alibaba Group Holding Limited */ #ifndef _IO_WDG_H_ #define _IO_WDG_H_ #include <stdbool.h> #ifdef __cplusplus extern "C" { #endif /** @addtogroup watchdog_device_api * watchdog设备节点API定义,主要是ioctl函数所用的命令id定义说明 * * @{ */ #define IOC_WDG_BASE 'W' #define IOC_WDG_RELOAD IOC_WDG_BAS...
YifuLiu/AliOS-Things
components/drivers/peripheral/watchdog/include/vfsdev/wdg_dev.h
C
apache-2.0
818
/* * Copyright (C) 2020-2021 Alibaba Group Holding Limited */ #include <aos/watchdog_core.h> #ifdef AOS_COMP_DEVFS #include <stdio.h> #include <inttypes.h> #endif aos_status_t aos_watchdog_get(aos_watchdog_ref_t *ref, uint32_t id) { return aos_dev_get(ref, AOS_DEV_TYPE_WATCHDOG, id); } void aos_watchdog_put(ao...
YifuLiu/AliOS-Things
components/drivers/peripheral/watchdog/src/watchdog.c
C
apache-2.0
6,807
#include <aos/list.h> #include <drv/wdt.h> #include <devicevfs/devicevfs.h> #include <drivers/ddkc_log.h> #include "wdg_core.h" // suppose there's only one watchdog exist in the system wdg_controller_t g_system_wdg; static void wdt_event_cb_fun(csi_wdt_t *wdt, void *arg) { wdg_controller_t *wdg = arg; ddkc...
YifuLiu/AliOS-Things
components/drivers/peripheral/watchdog/src/wdg_core.c
C
apache-2.0
9,943
/** * @file wdg_core.h * @copyright Copyright (C) 2015-2021 Alibaba Group Holding Limited * SPDX-License-Identifier: Apache-2.0 */ #ifndef _WDG_CORE_H #define _WDG_CORE_H #ifdef __cplusplus extern "C" { #endif #include "aos/driver/wdg.h" #include <aos/list.h> #include <aos/kernel.h> #define AOS_WDG_MAGIC 0x3D63D...
YifuLiu/AliOS-Things
components/drivers/peripheral/watchdog/src/wdg_core.h
C
apache-2.0
1,849
/* * Copyright (C) 2015-2021 Alibaba Group Holding Limited */ #include <poll.h> #include <aos/driver/wdg.h> #include <vfsdev/wdg_dev.h> #include <devicevfs/devicevfs.h> #ifdef CONFIG_WDG_NUM #define PLATFORM_WDG_NUM CONFIG_WDG_NUM #else #define PLATFORM_WDG_NUM 1 #endif #if (PLATFORM_WDG_NUM > 0) // WDG device n...
YifuLiu/AliOS-Things
components/drivers/peripheral/watchdog/src/wdg_dev.c
C
apache-2.0
6,473
/* * Copyright (C) 2019-2020 Alibaba Group Holding Limited */ #ifndef HAL_WIFI_H #define HAL_WIFI_H //#include <drivers/u_ld.h> #include <vfsdev/wifi_dev.h> #ifdef __cplusplus extern "C" { #endif typedef struct { /* system info */ /* type, eg: rtos, linux */ const char *os; /* type, eg: solo, sub, g...
YifuLiu/AliOS-Things
components/drivers/peripheral/wifi/include/aos/hal/wifi.h
C
apache-2.0
2,792
/* * Copyright (C) 2019-2020 Alibaba Group Holding Limited */ #ifndef DEVICE_WIFI_H #define DEVICE_WIFI_H #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <string.h> #include <stdbool.h> #ifdef __cplusplus extern "C" { #endif #define WIFI_NUMBER_WEP_KEYS (4) /**< The group number of WEP...
YifuLiu/AliOS-Things
components/drivers/peripheral/wifi/include/vfsdev/wifi_dev.h
C
apache-2.0
20,114
/* * Copyright (C) 2015-2021 Alibaba Group Holding Limited */ #include <aos/hal/wifi.h> #include <vfsdev/wifi_dev.h> #include <devicevfs/devicevfs.h> #include "wifi_inter.h" #define PLATFORM_wifi_NUM 4 // wifi device node will be named with "/dev/wifi<x>", where <x> is wifi port id #define WIFI_DEV_NAME_FORMAT "w...
YifuLiu/AliOS-Things
components/drivers/peripheral/wifi/src/vfs_wifi_drv.c
C
apache-2.0
9,086
/* * Copyright (C) 2019-2020 Alibaba Group Holding Limited */ //#if defined(CONFIG_SAL) || defined(CONFIG_TCPIP) #include <stdio.h> #include <string.h> #include <unistd.h> #include <aos/hal/wifi.h> #include <vfsdev/wifi_dev.h> #define WIFI_DRIVER(dev) ((wifi_driver_t *)dev->drv_ops) int hal_wifi_init(netdev_t *d...
YifuLiu/AliOS-Things
components/drivers/peripheral/wifi/src/wifi.c
C
apache-2.0
8,250
/* * Copyright (C) 2019-2020 Alibaba Group Holding Limited */ #ifndef WIFI_INTER_H #define WIFI_INTER_H #include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdbool.h> #ifdef __cplusplus extern "C" { #endif int hal_wifi_init(netdev_t *dev); int hal_wifi_deinit(netdev_t *dev); int hal_wifi_get_base...
YifuLiu/AliOS-Things
components/drivers/peripheral/wifi/src/wifi_inter.h
C
apache-2.0
1,969
/* * Copyright (C) 2020-2021 Alibaba Group Holding Limited */ #include <stdlib.h> #include <fcntl.h> #include <stdio.h> #include "aos/vfs.h" #include "epoll.h" #if AOS_COMP_CLI #include "aos/cli.h" #endif extern int epoll_vfs_test_device_init(void); extern int epoll_vfs_test_device_deinit(void); static void epoll_e...
YifuLiu/AliOS-Things
components/epoll/example/epoll_example.c
C
apache-2.0
1,856
/* * Copyright (C) 2015-2017 Alibaba Group Holding Limited */ #include <stdbool.h> #include <stdlib.h> #include <string.h> #include "aos/kernel.h" #include "aos/list.h" #include "aos/vfs.h" #include "poll.h" #define CACHE_COUNT 5 #define MK_CMD(c, l) ((l << 4) | (c)) #define _GET_LEN(cmd) ((cmd) >> 4) #define _G...
YifuLiu/AliOS-Things
components/epoll/example/test_device.c
C
apache-2.0
4,461
/** * @file epoll.h * epoll.h API header file. * * @version V1.0 * @date 2020-04-26 * @copyright Copyright (C) 2015-2020 Alibaba Group Holding Limited */ #ifndef ___EPOLL_H__ #define ___EPOLL_H__ #ifdef __cplusplus extern "C" { #endif #include <stdint.h> #define EPOLL_CTL_ADD 1 #define EPOLL_CTL_DEL...
YifuLiu/AliOS-Things
components/epoll/include/epoll.h
C
apache-2.0
1,845
/** * @file epoll_inner.h * epoll_inner.h API header file. * * @version V1.0 * @date 2020-04-26 * @copyright Copyright (C) 2015-2020 Alibaba Group Holding Limited */ #ifndef ___EPOLL_INNNER_H__ #define ___EPOLL_INNNER_H__ #ifdef __cplusplus extern "C" { #endif #include <stddef.h> #include <stdint.h> #i...
YifuLiu/AliOS-Things
components/epoll/include/private/epoll_inner.h
C
apache-2.0
1,585
/** * @file rbtree_wrapper.h * rbtree_wrapper.h API header file. * * @version V1.0 * @date 2020-05-14 * @copyright Copyright (C) 2015-2020 Alibaba Group Holding Limited */ #ifndef ___RBTREE_WRAPPER_H__ #define ___RBTREE_WRAPPER_H__ #ifdef __cplusplus extern "C" { #endif #include <stdint.h> #include <a...
YifuLiu/AliOS-Things
components/epoll/include/private/rbtree_wrapper.h
C
apache-2.0
609
/* * Copyright (C) 2015-2020 Alibaba Group Holding Limited */ #include <string.h> #include <stdio.h> #include <stddef.h> #include <stdbool.h> #include <errno.h> #include <aos/kernel.h> #include <aos/list.h> #include <aos/vfs.h> #include "epoll.h" #include "private/epoll_inner.h" #include "private/rbtree_wrapper.h" ...
YifuLiu/AliOS-Things
components/epoll/src/device.c
C
apache-2.0
12,902
#include <stdint.h> #include <string.h> #include <stdio.h> #include <fcntl.h> #include <errno.h> #include <aos/kernel.h> #include <aos/vfs.h> #include <epoll.h> #include "private/epoll_inner.h" int aos_epoll_create(int size) { if (size < 0) { errno = EINVAL; return -1; } return aos_epoll_cr...
YifuLiu/AliOS-Things
components/epoll/src/epoll.c
C
apache-2.0
1,996
#include <private/epoll_inner.h> #include "k_api.h" #include <k_rbtree.h> epoll_item_t *rbr_find(struct k_rbtree_root_t *root, int fd) { struct k_rbtree_node_t *rbtnode = root->rbt_node; while (rbtnode != NULL) { epoll_item_t *mynode = k_rbtree_entry(rbtnode, epoll_item_t, tree_node); if (my...
YifuLiu/AliOS-Things
components/epoll/src/rbtree_wrapper.c
C
apache-2.0
1,574
#if AOS_COMP_CLI #include "aos/cli.h" #endif #include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <aos/errno.h> #include <aos/kernel.h> #include <aos/vfs.h> #include "aos/init.h" #include "board.h" #include <k_api.h> static void fatfs_comp_example(int argc, char **argv) { char buff[512] = {0}; i...
YifuLiu/AliOS-Things
components/fatfs/example/fatfs_example.c
C
apache-2.0
2,125
/*-----------------------------------------------------------------------/ / Low level disk interface modlue include file (C)ChaN, 2014 / /-----------------------------------------------------------------------*/ #ifndef _DISKIO_DEFINED #define _DISKIO_DEFINED #ifdef __cplusplus extern "C" { #endif #incl...
YifuLiu/AliOS-Things
components/fatfs/include/diskio.h
C
apache-2.0
2,998
/** * @file fatfs.h * @copyright Copyright (C) 2015-2018 Alibaba Group Holding Limited */ #ifndef FS_FATFS_H #define FS_FATFS_H #ifdef __cplusplus extern "C" { #endif /** * @addtogroup fs_fatfs fatfs * fatfs API. * Used for projects' inside components. Use aos api for APP. * @{ */ /** * fatfs register * ...
YifuLiu/AliOS-Things
components/fatfs/include/fatfs.h
C
apache-2.0
644
/* * Copyright (C) 2015-2017 Alibaba Group Holding Limited */ #ifndef FS_FAT_DISKIO_H #define FS_FAT_DISKIO_H #ifdef __cplusplus extern "C" { #endif #include "diskio.h" /* Definitions of physical driver number of each drive */ #define DEV_MMC 0 /* Map MMC/SD card to physical drive 0 */ #define DEV_USB 1 /* Ma...
YifuLiu/AliOS-Things
components/fatfs/include/fatfs_diskio.h
C
apache-2.0
661
/*----------------------------------------------------------------------------/ / FatFs - Generic FAT Filesystem module R0.13 / /-----------------------------------------------------------------------------/ / / Copyright (C) 2017, ChaN, all right reserved. / / FatFs module is an open so...
YifuLiu/AliOS-Things
components/fatfs/include/ff.h
C
apache-2.0
14,165
/*---------------------------------------------------------------------------/ / FatFs - Configuration file /---------------------------------------------------------------------------*/ #include "k_api.h" #define FFCONF_DEF 87030 /* Revision ID */ /*------------------------------------------------------------------...
YifuLiu/AliOS-Things
components/fatfs/include/ffconf.h
C
apache-2.0
10,031
/*-------------------------------------------*/ /* Integer type definitions for FatFs module */ /*-------------------------------------------*/ #ifndef FF_INTEGER #define FF_INTEGER #ifdef _WIN32 /* FatFs development platform */ #include <windows.h> #include <tchar.h> typedef unsigned __int64 QWORD; #else /* Emb...
YifuLiu/AliOS-Things
components/fatfs/include/integer.h
C
apache-2.0
815
/* * Copyright (C) 2015-2017 Alibaba Group Holding Limited */ #include <string.h> #include "fatfs_diskio.h" #include "ff.h" #ifdef CONFIG_AOS_FATFS_SUPPORT_USB #include "sd_disk/sd_disk.h" #endif DSTATUS ff_disk_status(BYTE pdrv) { switch (pdrv) { #ifdef CONFIG_AOS_FATFS_SUPPORT_MMC case DEV_MMC: re...
YifuLiu/AliOS-Things
components/fatfs/src/diskio.c
C
apache-2.0
2,456
/* * Copyright (C) 2015-2017 Alibaba Group Holding Limited */ #include <stdint.h> #include <stdio.h> #include <string.h> #include <sys/fcntl.h> #include "aos/kernel.h" #include "fatfs_diskio.h" #include "ff.h" #include "vfs_types.h" #include "vfs_api.h" #if FF_USE_LFN == 0 #define MAX_NAME_LEN 12 #else #define MAX...
YifuLiu/AliOS-Things
components/fatfs/src/fatfs_vfs.c
C
apache-2.0
14,253
/*----------------------------------------------------------------------------/ / FatFs - Generic FAT Filesystem Module R0.13 / /-----------------------------------------------------------------------------/ / / Copyright (C) 2017, ChaN, all right reserved. / / FatFs module is an open so...
YifuLiu/AliOS-Things
components/fatfs/src/ff.c
C
apache-2.0
213,215
/*------------------------------------------------------------------------*/ /* Sample Code of OS Dependent Functions for FatFs */ /* (C)ChaN, 2018 */ /*------------------------------------------------------------------------*/ #include <s...
YifuLiu/AliOS-Things
components/fatfs/src/ffsystem.c
C
apache-2.0
3,768
/*------------------------------------------------------------------------*/ /* Unicode handling functions for FatFs R0.13+ */ /*------------------------------------------------------------------------*/ /* This module will occupy a huge memory in the .const section when the / / FatFs is ...
YifuLiu/AliOS-Things
components/fatfs/src/ffunicode.c
C
apache-2.0
713,062
/* * The Clear BSD License * Copyright (c) 2015, Freescale Semiconductor, Inc. * Copyright 2016 NXP * All rights reserved. * * * Redistribution and use in source and binary forms, with or without modification, * are permitted (subject to the limitations in the disclaimer below) provided * that the following c...
YifuLiu/AliOS-Things
components/fatfs/src/mmc_disk/mmc_disk.c
C
apache-2.0
5,422
/* * The Clear BSD License * Copyright (c) 2015, Freescale Semiconductor, Inc. * Copyright 2016 NXP * All rights reserved. * * * Redistribution and use in source and binary forms, with or without modification, * are permitted (subject to the limitations in the disclaimer below) provided * that the following c...
YifuLiu/AliOS-Things
components/fatfs/src/mmc_disk/mmc_disk.h
C
apache-2.0
4,020
/* * The Clear BSD License * Copyright (c) 2015, Freescale Semiconductor, Inc. * Copyright 2016 NXP * All rights reserved. * * * Redistribution and use in source and binary forms, with or without modification, * are permitted (subject to the limitations in the disclaimer below) provided * that the following c...
YifuLiu/AliOS-Things
components/fatfs/src/ram_disk/ram_disk.c
C
apache-2.0
4,085
/* * The Clear BSD License * Copyright (c) 2015, Freescale Semiconductor, Inc. * Copyright 2016 NXP * All rights reserved. * * * Redistribution and use in source and binary forms, with or without modification, * are permitted (subject to the limitations in the disclaimer below) provided * that the following c...
YifuLiu/AliOS-Things
components/fatfs/src/ram_disk/ram_disk.h
C
apache-2.0
2,608
/* * The Clear BSD License * Copyright (c) 2015, Freescale Semiconductor, Inc. * Copyright 2016 NXP * All rights reserved. * * * Redistribution and use in source and binary forms, with or without modification, * are permitted (subject to the limitations in the disclaimer below) provided * that the following c...
YifuLiu/AliOS-Things
components/fatfs/src/sd_disk/sd_disk.c
C
apache-2.0
3,732
/* * The Clear BSD License * Copyright (c) 2015, Freescale Semiconductor, Inc. * Copyright 2016 NXP * All rights reserved. * * * Redistribution and use in source and binary forms, with or without modification, * are permitted (subject to the limitations in the disclaimer below) provided * that the following c...
YifuLiu/AliOS-Things
components/fatfs/src/sd_disk/sd_disk.h
C
apache-2.0
2,214
/* * The Clear BSD License * Copyright (c) 2015, Freescale Semiconductor, Inc. * Copyright 2016 NXP * All rights reserved. * * * Redistribution and use in source and binary forms, with or without modification, * are permitted (subject to the limitations in the disclaimer below) provided * that the following c...
YifuLiu/AliOS-Things
components/fatfs/src/usb_disk/usb_disk.h
C
apache-2.0
4,318
/***************************************************************************/ /* */ /* ft2build.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/devel/ft2build.h
C
apache-2.0
1,830
/***************************************************************************/ /* */ /* ftoption.h (for development) */ /* */ /* Us...
YifuLiu/AliOS-Things
components/freetype/devel/ftoption.h
C
apache-2.0
53,701
/***************************************************************************/ /* */ /* ftconfig.h */ /* */ /* AN...
YifuLiu/AliOS-Things
components/freetype/include/config/ftconfig.h
C
apache-2.0
23,567
/***************************************************************************/ /* */ /* ftheader.h */ /* */ /* Bu...
YifuLiu/AliOS-Things
components/freetype/include/config/ftheader.h
C
apache-2.0
25,587
/* * This file registers the FreeType modules compiled into the library. * * If you use GNU make, this file IS NOT USED! Instead, it is created in * the objects directory (normally `<topdir>/objs/') based on information * from `<topdir>/modules.cfg'. * * Please read `docs/INSTALL.ANY' and `docs/CUSTOMIZE' ...
YifuLiu/AliOS-Things
components/freetype/include/config/ftmodule.h
C
apache-2.0
1,399
/***************************************************************************/ /* */ /* ftoption.h */ /* */ /* Us...
YifuLiu/AliOS-Things
components/freetype/include/config/ftoption.h
C
apache-2.0
53,767
/***************************************************************************/ /* */ /* ftstdlib.h */ /* */ /* AN...
YifuLiu/AliOS-Things
components/freetype/include/config/ftstdlib.h
C
apache-2.0
7,313
/***************************************************************************/ /* */ /* freetype.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/freetype.h
C
apache-2.0
255,266
/***************************************************************************/ /* */ /* ft2build.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ft2build.h
C
apache-2.0
2,383
/***************************************************************************/ /* */ /* ftadvanc.h */ /* */ /* Qu...
YifuLiu/AliOS-Things
components/freetype/include/ftadvanc.h
C
apache-2.0
10,576
/***************************************************************************/ /* */ /* ftautoh.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftautoh.h
C
apache-2.0
14,660
/***************************************************************************/ /* */ /* ftbbox.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftbbox.h
C
apache-2.0
5,245
/***************************************************************************/ /* */ /* ftbdf.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftbdf.h
C
apache-2.0
6,800
/***************************************************************************/ /* */ /* ftbitmap.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftbitmap.h
C
apache-2.0
13,998
/***************************************************************************/ /* */ /* ftbzip2.h */ /* */ /* Bz...
YifuLiu/AliOS-Things
components/freetype/include/ftbzip2.h
C
apache-2.0
4,307
/***************************************************************************/ /* */ /* ftcache.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftcache.h
C
apache-2.0
57,529
/***************************************************************************/ /* */ /* ftcffdrv.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftcffdrv.h
C
apache-2.0
9,886
/***************************************************************************/ /* */ /* This file defines the structure of the FreeType reference. */ /* It is used by the python script that generates the HTML files. */ /* ...
YifuLiu/AliOS-Things
components/freetype/include/ftchapters.h
C
apache-2.0
8,514
/***************************************************************************/ /* */ /* ftcid.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftcid.h
C
apache-2.0
5,579
/***************************************************************************/ /* */ /* fterrdef.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/fterrdef.h
C
apache-2.0
12,399
/***************************************************************************/ /* */ /* fterrors.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/fterrors.h
C
apache-2.0
9,292
/***************************************************************************/ /* */ /* ftgasp.h */ /* */ /* Ac...
YifuLiu/AliOS-Things
components/freetype/include/ftgasp.h
C
apache-2.0
4,502
/***************************************************************************/ /* */ /* ftglyph.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftglyph.h
C
apache-2.0
39,819
/***************************************************************************/ /* */ /* ftgxval.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftgxval.h
C
apache-2.0
12,596
/***************************************************************************/ /* */ /* ftgzip.h */ /* */ /* Gz...
YifuLiu/AliOS-Things
components/freetype/include/ftgzip.h
C
apache-2.0
5,636
/***************************************************************************/ /* */ /* ftimage.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftimage.h
C
apache-2.0
83,198
/***************************************************************************/ /* */ /* ftincrem.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftincrem.h
C
apache-2.0
11,406
/***************************************************************************/ /* */ /* ftlcdfil.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftlcdfil.h
C
apache-2.0
9,309
/***************************************************************************/ /* */ /* ftlist.h */ /* */ /* Ge...
YifuLiu/AliOS-Things
components/freetype/include/ftlist.h
C
apache-2.0
16,764
/***************************************************************************/ /* */ /* ftlzw.h */ /* */ /* LZ...
YifuLiu/AliOS-Things
components/freetype/include/ftlzw.h
C
apache-2.0
4,256
/***************************************************************************/ /* */ /* ftmac.h */ /* */ /* Ad...
YifuLiu/AliOS-Things
components/freetype/include/ftmac.h
C
apache-2.0
17,098
/***************************************************************************/ /* */ /* ftmm.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftmm.h
C
apache-2.0
22,634
/***************************************************************************/ /* */ /* ftmodapi.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftmodapi.h
C
apache-2.0
32,648
/***************************************************************************/ /* */ /* ftmoderr.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftmoderr.h
C
apache-2.0
10,426
/***************************************************************************/ /* */ /* ftotval.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftotval.h
C
apache-2.0
7,134
/***************************************************************************/ /* */ /* ftoutln.h */ /* */ /* Su...
YifuLiu/AliOS-Things
components/freetype/include/ftoutln.h
C
apache-2.0
34,892
/***************************************************************************/ /* */ /* ftpfr.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftpfr.h
C
apache-2.0
6,289
/***************************************************************************/ /* */ /* ftrender.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftrender.h
C
apache-2.0
11,719
/***************************************************************************/ /* */ /* ftsizes.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftsizes.h
C
apache-2.0
9,561
/***************************************************************************/ /* */ /* ftsnames.h */ /* */ /* Si...
YifuLiu/AliOS-Things
components/freetype/include/ftsnames.h
C
apache-2.0
11,179
/***************************************************************************/ /* */ /* ftstroke.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftstroke.h
C
apache-2.0
21,601
/***************************************************************************/ /* */ /* ftsynth.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftsynth.h
C
apache-2.0
3,975
/***************************************************************************/ /* */ /* ftsystem.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftsystem.h
C
apache-2.0
10,197
/***************************************************************************/ /* */ /* fttrigon.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/fttrigon.h
C
apache-2.0
8,443
/***************************************************************************/ /* */ /* ftttdrv.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftttdrv.h
C
apache-2.0
6,253
/***************************************************************************/ /* */ /* fttypes.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/fttypes.h
C
apache-2.0
35,378
/***************************************************************************/ /* */ /* ftwinfnt.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/ftwinfnt.h
C
apache-2.0
10,417
/***************************************************************************/ /* */ /* ftxf86.h */ /* */ /* Su...
YifuLiu/AliOS-Things
components/freetype/include/ftxf86.h
C
apache-2.0
4,721
/***************************************************************************/ /* */ /* autohint.h */ /* */ /* Hi...
YifuLiu/AliOS-Things
components/freetype/include/internal/autohint.h
C
apache-2.0
14,448
/***************************************************************************/ /* */ /* ftcalc.h */ /* */ /* Ar...
YifuLiu/AliOS-Things
components/freetype/include/internal/ftcalc.h
C
apache-2.0
7,617
/***************************************************************************/ /* */ /* ftdebug.h */ /* */ /* De...
YifuLiu/AliOS-Things
components/freetype/include/internal/ftdebug.h
C
apache-2.0
11,696
/***************************************************************************/ /* */ /* ftdriver.h */ /* */ /* Fr...
YifuLiu/AliOS-Things
components/freetype/include/internal/ftdriver.h
C
apache-2.0
21,585
/***************************************************************************/ /* */ /* ftgloadr.h */ /* */ /* Th...
YifuLiu/AliOS-Things
components/freetype/include/internal/ftgloadr.h
C
apache-2.0
6,498
/***************************************************************************/ /* */ /* ftmemory.h */ /* */ /* Th...
YifuLiu/AliOS-Things
components/freetype/include/internal/ftmemory.h
C++
apache-2.0
16,028
/***************************************************************************/ /* */ /* ftobjs.h */ /* */ /* Th...
YifuLiu/AliOS-Things
components/freetype/include/internal/ftobjs.h
C
apache-2.0
80,163
/***************************************************************************/ /* */ /* ftpic.h */ /* */ /* Th...
YifuLiu/AliOS-Things
components/freetype/include/internal/ftpic.h
C
apache-2.0
2,522
/***************************************************************************/ /* */ /* ftrfork.h */ /* */ /* Em...
YifuLiu/AliOS-Things
components/freetype/include/internal/ftrfork.h
C
apache-2.0
14,878
/***************************************************************************/ /* */ /* ftserv.h */ /* */ /* Th...
YifuLiu/AliOS-Things
components/freetype/include/internal/ftserv.h
C
apache-2.0
45,374
/***************************************************************************/ /* */ /* ftstream.h */ /* */ /* St...
YifuLiu/AliOS-Things
components/freetype/include/internal/ftstream.h
C
apache-2.0
23,137
/***************************************************************************/ /* */ /* fttrace.h */ /* */ /* Tr...
YifuLiu/AliOS-Things
components/freetype/include/internal/fttrace.h
C
apache-2.0
5,671