/AliOS-Things-master/components/kv/example/ |
A D | kv_example.c | 24 char get_value[32] = {0}; in kv_comp_example() local 34 ret = aos_kv_get(key, get_value, &get_len); in kv_comp_example() 45 if(strcmp(get_value, set_value)){ in kv_comp_example() 46 printf("kv comp test fail! get value not right! get_value:%s\r\n", get_value); in kv_comp_example()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/apps/snmp/ |
A D | snmp_table.c | 73 instance->get_value = table_node->get_value; in snmp_table_get_instance() 112 instance->get_value = table_node->get_value; in snmp_table_get_next_instance() 203 instance->get_value = snmp_table_extract_value_from_u32ref; in snmp_table_simple_get_instance() 206 instance->get_value = snmp_table_extract_value_from_s32ref; in snmp_table_simple_get_instance() 210 instance->get_value = snmp_table_extract_value_from_refconstptr; in snmp_table_simple_get_instance() 296 instance->get_value = snmp_table_extract_value_from_u32ref; in snmp_table_simple_get_next_instance() 299 instance->get_value = snmp_table_extract_value_from_s32ref; in snmp_table_simple_get_next_instance() 303 instance->get_value = snmp_table_extract_value_from_refconstptr; in snmp_table_simple_get_next_instance()
|
A D | snmp_scalar.c | 64 instance->get_value = scalar_node->get_value; in snmp_scalar_get_instance() 108 instance->get_value = snmp_scalar_array_get_value; in snmp_scalar_array_get_instance() 185 instance->get_value = snmp_scalar_array_get_value; in snmp_scalar_array_get_next_instance() 199 return array_node->get_value(array_node_def, value); in snmp_scalar_array_get_value()
|
A D | snmp_threadsync.c | 58 …call_data->retval.s16 = call_data->proxy_instance.get_value(&call_data->proxy_instance, call_data-… in threadsync_get_value_synced() 187 …instance->get_value = (call_data->proxy_instance.get_value != NULL)? threadsync_get_value :… in do_sync()
|
A D | snmp_core.c | 791 …e_instance->access & SNMP_NODE_INSTANCE_ACCESS_READ) != 0) && (node_instance->get_value == NULL)) { in snmp_get_node_instance_from_oid() 851 node_instance->get_value = NULL; in snmp_get_next_node_instance_from_oid() 865 …e_instance->access & SNMP_NODE_INSTANCE_ACCESS_READ) != 0) && (node_instance->get_value == NULL)) { in snmp_get_next_node_instance_from_oid()
|
A D | snmp_msg.c | 235 …E_INSTANCE_ACCESS_READ) != SNMP_NODE_INSTANCE_ACCESS_READ) || (node_instance->get_value == NULL)) { in snmp_msg_getnext_validate_node_inst() 298 s16_t len = node_instance.get_value(&node_instance, vb->value); in snmp_process_varbind()
|
/AliOS-Things-master/components/cplusplus/example/cpp_standard/ |
A D | static_singleton_test.cpp | 15 int get_value() { return _value; }; in get_value() function in singleton 30 cout << "single0 set value 10, single1 get vale is " << single1->get_value() in static_singleton_test()
|
/AliOS-Things-master/hardware/chip/rtl872xd/test/ |
A D | aos_test.c | 846 char get_value[32] = {0}; in CASE() local 853 ret = aos_kv_get(key, get_value, &get_len); in CASE() 856 ASSERT_STR_EQ(get_value, set_value); in CASE() 864 char get_value[32] = {0}; in CASE() local 876 ret = aos_kv_get(key, get_value, &get_len); in CASE() 885 char get_value[64] = {0}; in CASE() local 894 memset(get_value, 0, sizeof(get_value)); in CASE() 902 get_len = sizeof(get_value); in CASE() 903 ret = aos_kv_get(key, get_value, &get_len); in CASE() 906 ASSERT_TRUE(0 == memcmp(get_value, set_value, set_len)); in CASE()
|
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/apps/ |
A D | snmp_scalar.h | 57 node_instance_get_value_method get_value; member 93 snmp_scalar_array_get_value_method get_value; member
|
A D | snmp_table.h | 68 node_instance_get_value_method get_value; member
|
A D | snmp_core.h | 205 node_instance_get_value_method get_value; member
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/apps/ |
A D | snmp_scalar.h | 57 node_instance_get_value_method get_value; member 93 snmp_scalar_array_get_value_method get_value; member
|
A D | snmp_table.h | 68 node_instance_get_value_method get_value; member
|
A D | snmp_core.h | 205 node_instance_get_value_method get_value; member
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/pngminus/ |
A D | pnm2png.c | 38 png_uint_32 get_value (FILE *pnm_file, int depth); 402 *pix_ptr++ = get_value (pnm_file, bit_depth); in pnm2png() 406 tmp16 = get_value (pnm_file, bit_depth); in pnm2png() 425 *pix_ptr++ = get_value (alpha_file, bit_depth); in pnm2png() 429 tmp16 = get_value (alpha_file, bit_depth); in pnm2png() 595 png_uint_32 get_value (FILE *pnm_file, int depth) in get_value() function
|
/AliOS-Things-master/components/drivers/peripheral/gpio/include/aos/ |
A D | gpioc_core.h | 21 int (*get_value)(struct aos_gpioc *, uint32_t); member
|
/AliOS-Things-master/components/drivers/peripheral/gpio/src/ |
A D | gpioc.c | 285 ret = (aos_status_t)!!gpioc->ops->get_value(gpioc, pin); in aos_gpioc_get_value() 414 !gpioc->ops->disable_irq || !gpioc->ops->get_value || !gpioc->ops->set_value) in aos_gpioc_register()
|
A D | gpioc_csi.c | 223 .get_value = gpioc_csi_get_value,
|
/AliOS-Things-master/components/amp/engine/duktape_engine/duktape/ |
A D | duktape.h | 1180 DUK_EXTERNAL_DECL duk_bool_t duk_next(duk_context *ctx, duk_idx_t enum_idx, duk_bool_t get_value);
|
A D | duktape.c | 7782 DUK_INTERNAL_DECL duk_bool_t duk_hobject_enumerator_next(duk_hthread *thr, duk_bool_t get_value); 23360 DUK_EXTERNAL duk_bool_t duk_next(duk_hthread *thr, duk_idx_t enum_index, duk_bool_t get_value) { in duk_next() argument 23365 return duk_hobject_enumerator_next(thr, get_value); in duk_next() 62066 DUK_INTERNAL duk_bool_t duk_hobject_enumerator_next(duk_hthread *thr, duk_bool_t get_value) { argument 62140 if (get_value) {
|