Home
last modified time | relevance | path

Searched refs:reference (Results 1 – 25 of 51) sorted by relevance

123

/lib/lwip/lwip/contrib/apps/LwipMibCompiler/SharpSnmpLib/Mib/Elements/Types/
A DTextualConvention.cs72 string reference = symbols.NextNonEOLSymbol().ToString(); in ParseReference()
73 … if ((reference.Length >= 2) && reference.StartsWith("\"") && reference.EndsWith("\"")) in ParseReference()
75 return reference.Substring(1, reference.Length-2); in ParseReference()
78 return reference; in ParseReference()
/lib/lwip/lwip/src/apps/snmp/
A Dsnmp_snmpv2_usm.c152 cell_instance->reference.ptr = username; in usmusertable_get_instance()
269 snmpv3_get_username(username, LWIP_PTR_NUMERIC_CAST(u8_t, state.reference)); in usmusertable_get_next_instance()
270 cell_instance->reference.ptr = username; in usmusertable_get_next_instance()
285 MEMCPY(value, cell_instance->reference.ptr, cell_instance->reference_len); in usmusertable_get_value()
293 snmpv3_get_user((const char *)cell_instance->reference.ptr, &auth_algo_val, NULL, NULL, NULL); in usmusertable_get_value()
305 snmpv3_get_user((const char *)cell_instance->reference.ptr, NULL, NULL, &priv_algo_val, NULL); in usmusertable_get_value()
318 snmpv3_get_user_storagetype((const char *)cell_instance->reference.ptr, &storage_type); in usmusertable_get_value()
A Dsnmp_scalar.c111 instance->reference.const_ptr = array_node_def; in snmp_scalar_array_get_instance()
188 instance->reference.const_ptr = result; in snmp_scalar_array_get_next_instance()
198 …ode_def *array_node_def = (const struct snmp_scalar_array_node_def *)instance->reference.const_ptr; in snmp_scalar_array_get_value()
211 …ode_def *array_node_def = (const struct snmp_scalar_array_node_def *)instance->reference.const_ptr; in snmp_scalar_array_set_test()
224 …ode_def *array_node_def = (const struct snmp_scalar_array_node_def *)instance->reference.const_ptr; in snmp_scalar_array_set_value()
A Dsnmp_mib2_interfaces.c114 cell_instance->reference.ptr = netif; in interfaces_Table_get_cell_instance()
148 cell_instance->reference.ptr = /* (struct netif*) */state.reference; in interfaces_Table_get_next_cell_instance()
159 struct netif *netif = (struct netif *)instance->reference.ptr; in interfaces_Table_get_value()
295 struct netif *netif = (struct netif *)instance->reference.ptr; in interfaces_Table_set_value()
A Dsnmp_threadsync.c70 struct threadsync_data *call_data = (struct threadsync_data *)instance->reference.ptr; in threadsync_get_value()
95 struct threadsync_data *call_data = (struct threadsync_data *)instance->reference.ptr; in threadsync_set_test()
121 struct threadsync_data *call_data = (struct threadsync_data *)instance->reference.ptr; in threadsync_set_value()
143 struct threadsync_data *call_data = (struct threadsync_data *)instance->reference.ptr; in threadsync_release_instance()
185 instance->reference.ptr = call_data; in do_sync()
A Dsnmp_table.c179 &instance->reference, in snmp_table_simple_get_instance()
276 &instance->reference, in snmp_table_simple_get_next_instance()
323 *dst = instance->reference.s32; in snmp_table_extract_value_from_s32ref()
331 *dst = instance->reference.u32; in snmp_table_extract_value_from_u32ref()
338 MEMCPY(value, instance->reference.const_ptr, instance->reference_len); in snmp_table_extract_value_from_refconstptr()
A Dsnmp_core.c863 node_instance->reference.ptr = NULL; in snmp_get_next_node_instance_from_oid()
1152 …_next_oid_check(struct snmp_next_oid_state *state, const u32_t *oid, u8_t oid_len, void *reference) in snmp_next_oid_check() argument
1165 state->reference = reference; in snmp_next_oid_check()
A Dsnmp_mib2_ip.c299 …return ip_AddrTable_get_cell_value_core((struct netif *)state.reference, column, value, value_len); in ip_AddrTable_get_next_cell_instance_and_value()
465 …return ip_RouteTable_get_cell_value_core((struct netif *)state.reference, ip4_addr_isany_val(dst),… in ip_RouteTable_get_next_cell_instance_and_value()
580 …return ip_NetToMediaTable_get_cell_value_core(LWIP_PTR_NUMERIC_CAST(size_t, state.reference), colu… in ip_NetToMediaTable_get_next_cell_instance_and_value()
A Dsnmp_mib2_tcp.c300 …return tcp_ConnTable_get_cell_value_core((struct tcp_pcb *)state.reference, column, value, value_l… in tcp_ConnTable_get_next_cell_instance_and_value()
414 … return tcp_ConnectionTable_get_cell_value_core(column, (struct tcp_pcb *)state.reference, value); in tcp_ConnectionTable_get_next_cell_instance_and_value()
A Dsnmp_mib2_udp.c308 … return udp_Table_get_cell_value_core((struct udp_pcb *)state.reference, column, value, value_len); in udp_Table_get_next_cell_instance_and_value()
/lib/lwip/lwip/contrib/examples/snmp/snmp_private_mib/
A Dlwip_prvmib.c294 cell_instance->reference.u32 = (u32_t)i; in sensor_table_get_cell_instance()
332 cell_instance->reference.u32 = LWIP_CONST_CAST(u32_t, state.reference); in sensor_table_get_next_cell_instance()
343 u32_t i = instance->reference.u32; in sensor_table_get_value()
377 u32_t i = instance->reference.u32; in sensor_table_set_value()
/lib/lwip/lwip/src/include/lwip/apps/
A Dsnmp_core.h219 union snmp_variant_value reference; member
288 void* reference; member
295 …next_oid_check(struct snmp_next_oid_state *state, const u32_t *oid, u8_t oid_len, void* reference);
/lib/lwip/lwip/doc/
A Dmqtt_client.txt91 /* The idea is to demultiplex topic and create some reference to be used in data callbacks
101 /* Decode topic string into a user defined reference */
121 /* Call function or do action depending on reference, in this case inpub_id */
A Dcontrib.txt25 10. use current source code style as further reference.
32 3. Use current documentation style as further reference.
/lib/lwip/lwip/contrib/apps/LwipMibCompiler/Mibs/
A DRFC-121529 "REFERENCE" value (reference DisplayString)
A DRFC-121237 "REFERENCE" value (reference DisplayString)
/lib/mbedtls/external/mbedtls/tests/suites/
A Dtest_suite_constant_time_hmac.function16 * Test the function mbedtls_ct_hmac() against a reference
129 /* Compute the reference result */
A Dtest_suite_constant_time.function262 int reference = memcmp(a + offset, b + offset, size);
274 TEST_ASSERT(reference == 0);
277 TEST_ASSERT(reference != 0);
317 int reference = memcmp(a + skip_head, b + skip_head, size - skip_head - skip_tail);
328 TEST_EQUAL(!!reference, !!actual);
A Dtest_suite_ctr_drbg.function473 // now generate a reference result equal to 2^n - i.e. set only bit (n + 1)
512 // increment reference
520 // test that mbedtls_ctr_increment_counter behaviour matches reference
A Dtest_suite_md.psa.data3 # analyze_outcomes.py (driver vs reference comparison).
/lib/acpi/
A Dacpi_dp.c254 const char *reference) in acpi_dp_add_reference() argument
261 new->string = reference; in acpi_dp_add_reference()
/lib/mbedtls/external/mbedtls/tests/
A DDescriptions.txt4 (reference test vectors, sanity checks, malformed input for parsing
/lib/mbedtls/external/mbedtls/scripts/mbedtls_dev/
A Dbignum_common.py87 def zfill_match(reference: str, target: str) -> str:
91 lr = len(reference)
/lib/mbedtls/external/mbedtls/docs/proposed/
A Dpsa-driver-integration-guide.md15 …PI (crypto functions beginning with `psa_`, and X.509 and TLS interfaces that reference PSA types).
A Dpsa-driver-developer-guide.md9 This document focuses on behavior that is specific to Mbed TLS. For a reference of the interface be…

Completed in 41 milliseconds

123