/AliOS-Things-master/solutions/javascript_demo/board/haas100/ |
A D | app.json | 4 "type":"GPIO", string 10 "type":"GPIO", string 16 "type":"GPIO", string 22 "type":"GPIO", string 28 "type":"GPIO", string 34 "type":"GPIO", string 40 "type":"GPIO", string 46 "type":"GPIO", string 58 "type":"I2C", string 66 "type":"I2C", string [all …]
|
/AliOS-Things-master/solutions/javascript_demo/board/haas-edu-k1/ |
A D | app.json | 5 "type": "GPIO", string 12 "type": "GPIO", string 19 "type": "GPIO", string 26 "type": "GPIO", string 33 "type":"GPIO", string 39 "type":"GPIO", string 45 "type":"GPIO", string 51 "type":"GPIO", string 57 "type":"GPIO", string 63 "type":"GPIO", string [all …]
|
/AliOS-Things-master/components/py_engine/tests/haas/HaaS200/python-apps/driver/ |
A D | board.json | 6 "type": "ADC", string 11 "type": "I2C", string 19 "type": "I2C", string 27 "type": "I2C", string 35 "type": "I2C", string 43 "type": "I2C", string 51 "type": "I2C", string 59 "type": "GPIO", string 66 "type": "GPIO", string 108 "type": "PWM", string [all …]
|
/AliOS-Things-master/components/py_engine/tests/haas/HaaS100/python-apps/driver/ |
A D | board.json | 6 "type": "ADC", string 11 "type": "I2C", string 19 "type": "I2C", string 27 "type": "I2C", string 35 "type": "I2C", string 43 "type": "I2C", string 51 "type": "I2C", string 59 "type": "I2C", string 67 "type": "GPIO", string 74 "type": "GPIO", string [all …]
|
/AliOS-Things-master/components/py_engine/tests/haas/HaaSEdu/python-apps/driver/ |
A D | board.json | 6 "type": "I2C", string 14 "type": "I2C", string 22 "type": "I2C", string 30 "type": "I2C", string 38 "type": "I2C", string 46 "type": "ADC", string 51 "type": "GPIO", string 58 "type": "GPIO", string 64 "type": "GPIO", string 70 "type": "GPIO", string [all …]
|
/AliOS-Things-master/components/amp/jslib/src/ |
A D | events.js | 96 EventEmitter.prototype.emit = function emit(type) { argument 136 function _addListener(target, type, listener, prepend) { argument 181 EventEmitter.prototype.prependListener = argument 194 function _onceWrap(target, type, listener) { argument 202 EventEmitter.prototype.once = function once(type, listener) { argument 211 EventEmitter.prototype.prependOnceListener = argument 221 EventEmitter.prototype.removeListener = argument 280 EventEmitter.prototype.removeAllListeners = argument 329 function _listeners(target, type, unwrap) { argument 354 EventEmitter.listenerCount = function (emitter, type) { argument [all …]
|
/AliOS-Things-master/components/amp/libjs/lib/ |
A D | events.js | 96 EventEmitter.prototype.emit = function emit(type) { argument 136 function _addListener(target, type, listener, prepend) { argument 181 EventEmitter.prototype.prependListener = argument 194 function _onceWrap(target, type, listener) { argument 202 EventEmitter.prototype.once = function once(type, listener) { argument 211 EventEmitter.prototype.prependOnceListener = argument 221 EventEmitter.prototype.removeListener = argument 280 EventEmitter.prototype.removeAllListeners = argument 329 function _listeners(target, type, unwrap) { argument 354 EventEmitter.listenerCount = function (emitter, type) { argument [all …]
|
/AliOS-Things-master/solutions/javascript_demo/board/haas600/ |
A D | app.json | 5 "type": "ADC", string 10 "type": "UART", string 19 "type": "UART", string 28 "type": "GPIO", string 34 "type": "GPIO", string 41 "type": "I2C", string 49 "type": "SPI", string 55 "type": "PWM", string 59 "type": "PWM", string 64 "type": "AUDIO", string
|
/AliOS-Things-master/solutions/javascript_demo/agriculture_demo/ |
A D | app.json | 5 "type": "UART", string 14 "type": "GPIO", string 20 "type": "GPIO", string 26 "type": "GPIO", string 32 "type": "GPIO", string 38 "type": "ADC", string 43 "type": "UART", string 52 "type": "I2C", string 60 "type": "GPIO", string
|
/AliOS-Things-master/solutions/miniapp_agent_demo/ |
A D | #U9ed8#U8ba4#U6a21#U5757.json | 14 "type": "bool", string 27 "type": "bool", string 40 "type": "bool", string 53 "type": "bool", string 66 "type": "bool", string 79 "type": "bool", string 91 "type": "info", string 100 "type": "bool", string 111 "type": "bool", string 122 "type": "bool", string [all …]
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | opmethods.c | 31 const mp_obj_type_t *type = mp_obj_get_type(self_in); in op_getitem() local 37 const mp_obj_type_t *type = mp_obj_get_type(self_in); in op_setitem() local 43 const mp_obj_type_t *type = mp_obj_get_type(self_in); in op_delitem() local 49 const mp_obj_type_t *type = mp_obj_get_type(lhs_in); in op_contains() local
|
A D | misc.h | 64 #define m_new(type, num) ((type *)(m_malloc(sizeof(type) * (num)))) argument 65 #define m_new_maybe(type, num) ((type *)(m_malloc_maybe(sizeof(type) * (num)))) argument 66 #define m_new0(type, num) ((type *)(m_malloc0(sizeof(type) * (num)))) argument 67 #define m_new_obj(type) (m_new(type, 1)) argument 68 #define m_new_obj_maybe(type) (m_new_maybe(type, 1)) argument 72 #define m_new_obj_with_finaliser(type) ((type *)(m_malloc_with_finaliser(sizeof(type)))) argument 75 #define m_new_obj_with_finaliser(type) m_new_obj(type) argument 81 #define m_del(type, ptr, num) m_free(ptr, sizeof(type) * (num)) argument 84 #define m_renew(type, ptr, old_num, new_num) ((type *)(m_realloc((ptr), sizeof(type) * (new_num)))) argument 86 #define m_del(type, ptr, num) ((void)(num), m_free(ptr)) argument [all …]
|
/AliOS-Things-master/components/freetype/src/base/ |
A D | ftinit.c | 63 #define FT_USE_MODULE( type, x ) extern "C" const type x; argument 65 #define FT_USE_MODULE( type, x ) extern const type x; argument 71 #define FT_USE_MODULE( type, x ) (const FT_Module_Class*)&(x), argument 92 #define FT_USE_MODULE( type, x ) \ argument 104 #define FT_USE_MODULE( type, x ) MODULE_CLASS_ ## x, argument 114 #define FT_USE_MODULE( type, x ) \ argument 147 #define FT_USE_MODULE( type, x ) \ argument
|
/AliOS-Things-master/components/csi/csi2/include/drv/ |
A D | list.h | 26 #define aos_offsetof(type, member) ((size_t)&(((type *)0)->member)) argument 35 #define aos_container_of(ptr, type, member) \ argument 60 #define dlist_entry(addr, type, member) \ argument 113 #define dlist_first_entry(ptr, type, member) \ argument 144 #define dlist_for_each_entry(queue, node, type, member) \ argument 158 #define dlist_for_each_entry_safe(queue, n, node, type, member) \ argument 171 #define list_entry(ptr, type, member) \ argument 183 #define dlist_for_each_entry_reverse(pos, head, member, type) \ argument 289 #define slist_for_each_entry(queue, node, type, member) \ argument 342 #define slist_first_entry(ptr, type, member) \ argument [all …]
|
/AliOS-Things-master/components/linksdk/core/utils/ |
A D | core_list.h | 27 #define offsetof(type, member) ((size_t)&(((type *)0)->member)) argument 36 #define container_of(ptr, type, member) \ argument 133 #define core_list_entry(ptr, type, member) \ argument 144 #define core_list_first_entry(ptr, type, member) \ argument 153 #define core_list_next_entry(pos, member, type) \ argument 163 #define core_list_for_each_entry(pos, head, member, type) \ argument 176 #define core_list_for_each_entry_safe(pos, n, head, member, type) \ argument
|
/AliOS-Things-master/components/linkkit/include/linkkit/infra/ |
A D | infra_list.h | 20 #define aos_offsetof(type, member) ((size_t) &(((type *)0)->member)) argument 29 #define aos_container_of(ptr, type, member) \ argument 54 #define dlist_entry(addr, type, member) \ argument 109 #define dlist_first_entry(ptr, type, member) \ argument 140 #define dlist_for_each_entry(queue, node, type, member) \ argument 154 #define dlist_for_each_entry_safe(queue, n, node, type, member) \ argument 312 #define slist_entry(addr, type, member) \ argument 322 #define slist_first_entry(ptr, type, member) \ argument 366 #define list_for_each_entry(pos, head, member, type) \ argument 369 #define list_for_each_entry_safe(pos, n, head, member, type) \ argument [all …]
|
/AliOS-Things-master/components/amp/utils/list/ |
A D | amp_list.h | 25 #define amp_offsetof(type, member) ((size_t)&(((type *)0)->member)) argument 34 #define amp_container_of(ptr, type, member) \ argument 66 #define dlist_entry(addr, type, member) \ argument 152 #define dlist_first_entry(ptr, type, member) dlist_entry((ptr)->next, type, member) argument 180 #define dlist_for_each_entry(queue, node, type, member) \ argument 194 #define dlist_for_each_entry_safe(queue, n, node, type, member) \ argument 206 #define list_entry(ptr, type, member) amp_container_of(ptr, type, member) argument 216 #define dlist_for_each_entry_reverse(pos, head, member, type) \ argument 334 #define slist_for_each_entry(queue, node, type, member) \ argument 348 #define slist_for_each_entry_safe(queue, tmp, node, type, member) \ argument [all …]
|
/AliOS-Things-master/components/py_engine/external/amp_utils/ |
A D | amp_list.h | 25 #define amp_offsetof(type, member) ((size_t)&(((type *)0)->member)) argument 34 #define amp_container_of(ptr, type, member) ((type *)((char *)(ptr)-amp_offsetof(type, member))) argument 65 #define dlist_entry(addr, type, member) ((type *)((long)addr - amp_offsetof(type, member))) argument 154 #define dlist_first_entry(ptr, type, member) dlist_entry((ptr)->next, type, member) argument 181 #define dlist_for_each_entry(queue, node, type, member) \ argument 194 #define dlist_for_each_entry_safe(queue, n, node, type, member) \ argument 204 #define list_entry(ptr, type, member) amp_container_of(ptr, type, member) argument 214 #define dlist_for_each_entry_reverse(pos, head, member, type) \ argument 334 #define slist_for_each_entry(queue, node, type, member) \ argument 348 #define slist_for_each_entry_safe(queue, tmp, node, type, member) \ argument [all …]
|
/AliOS-Things-master/components/osal_aos/include/aos/ |
A D | list.h | 25 #define aos_offsetof(type, member) ((size_t)&(((type *)0)->member)) argument 34 #define aos_container_of(ptr, type, member) \ argument 66 #define dlist_entry(addr, type, member) \ argument 152 #define dlist_first_entry(ptr, type, member) dlist_entry((ptr)->next, type, member) argument 180 #define dlist_for_each_entry(queue, node, type, member) \ argument 194 #define dlist_for_each_entry_safe(queue, n, node, type, member) \ argument 206 #define aos_list_entry(ptr, type, member) aos_container_of(ptr, type, member) argument 216 #define dlist_for_each_entry_reverse(pos, head, member, type) \ argument 334 #define slist_for_each_entry(queue, node, type, member) \ argument 348 #define slist_for_each_entry_safe(queue, tmp, node, type, member) \ argument [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/scripts/ |
A D | intprefix.c | 12 #define PNG_INTERNAL_DATA(type, name, array)\ argument 15 #define PNG_INTERNAL_FUNCTION(type, name, args, attributes)\ argument 18 #define PNG_INTERNAL_CALLBACK(type, name, args, attributes)\ argument
|
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/os/os_dep/include/ |
A D | tcm_heap.h | 43 #define HNEW(heap, type) \ argument 46 #define HNEWVEC(heap, type, nelem) \ argument 49 #define HDELETE(heap, type, mem) \ argument 52 #define HDELETEVEC(heap, type, nelem, mem) \ argument
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/ |
A D | pngconf.h | 233 # define PNG_EXPORT_TYPE(type) type PNG_IMPEXP argument 287 # define PNG_FUNCTION(type, name, args, attributes) attributes type name args argument 291 # define PNG_EXPORT_TYPE(type) PNG_IMPEXP type argument 300 # define PNG_EXPORTA(ordinal, type, name, args, attributes) \ argument 310 #define PNG_EXPORT(ordinal, type, name, args) \ argument 315 # define PNG_REMOVED(ordinal, type, name, args, attributes) argument 319 # define PNG_CALLBACK(type, name, args) type (PNGCBAPI name) PNGARG(args) argument 450 # define PNG_FP_EXPORT(ordinal, type, name, args)\ argument 453 # define PNG_FP_EXPORT(ordinal, type, name, args) argument 458 # define PNG_FIXED_EXPORT(ordinal, type, name, args)\ argument [all …]
|
/AliOS-Things-master/components/SDL2/src/image/VisualC/external/include/ |
A D | pngconf.h | 233 # define PNG_EXPORT_TYPE(type) type PNG_IMPEXP argument 287 # define PNG_FUNCTION(type, name, args, attributes) attributes type name args argument 291 # define PNG_EXPORT_TYPE(type) PNG_IMPEXP type argument 300 # define PNG_EXPORTA(ordinal, type, name, args, attributes) \ argument 310 #define PNG_EXPORT(ordinal, type, name, args) \ argument 315 # define PNG_REMOVED(ordinal, type, name, args, attributes) argument 319 # define PNG_CALLBACK(type, name, args) type (PNGCBAPI name) PNGARG(args) argument 450 # define PNG_FP_EXPORT(ordinal, type, name, args)\ argument 453 # define PNG_FP_EXPORT(ordinal, type, name, args) argument 458 # define PNG_FIXED_EXPORT(ordinal, type, name, args)\ argument [all …]
|
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/core/src/ |
A D | NetworkProxy.cc | 21 NetworkProxy::NetworkProxy(Type type, const std::string &hostName, in NetworkProxy() 45 void NetworkProxy::setType(NetworkProxy::Type type) { type_ = type; } in setType() 49 NetworkProxy::Type NetworkProxy::type() const { return type_; } in type() function in AlibabaCloud::NetworkProxy
|
/AliOS-Things-master/components/oss/src/auth/ |
A D | Signer.cc | 21 Signer::Signer(Type type, const std::string & name, const std::string & version) : in Signer() 37 Signer::Type Signer::type() const in type() function in Signer
|