Home
last modified time | relevance | path

Searched refs:entry (Results 1 – 25 of 64) sorted by relevance

123

/lib/lwip/lwip/src/core/
A Ddns.c448 iterator_fn(entry->name, &entry->addr, iterator_arg); in dns_local_iterate()
451 entry = entry->next; in dns_local_iterate()
511 entry = entry->next; in dns_lookup_local()
556 entry = entry->next; in dns_local_removehost()
561 entry = entry->next; in dns_local_removehost()
780 (u16_t)(entry->server_idx), entry->name)); in dns_send()
846 entry->txid, entry->name, entry->server_idx)); in dns_send()
1079 entry->tmr = 1; in dns_check_entry()
1111 entry->tmr = entry->retries; in dns_check_entry()
1124 if ((entry->ttl == 0) || (--entry->ttl == 0)) { in dns_check_entry()
[all …]
/lib/efi_client/
A Defi_info.c15 struct efi_entry_hdr *entry; in efi_info_get() local
28 entry = (struct efi_entry_hdr *)((ulong)info + info->hdr_size); in efi_info_get()
29 while (entry->type != EFIET_END) { in efi_info_get()
30 if (entry->type == type) { in efi_info_get()
31 if (entry->addr) in efi_info_get()
32 *datap = map_sysmem(entry->addr, entry->size); in efi_info_get()
34 *datap = entry + 1; in efi_info_get()
35 *sizep = entry->size; in efi_info_get()
38 entry = (struct efi_entry_hdr *)((ulong)entry + entry->link); in efi_info_get()
/lib/acpi/
A Dacpi_writer.c20 int acpi_write_one(struct acpi_ctx *ctx, const struct acpi_writer *entry) in acpi_write_one() argument
24 log_debug("%s: writing table '%s'\n", entry->name, in acpi_write_one()
25 entry->table); in acpi_write_one()
27 ret = entry->h_write(ctx, entry); in acpi_write_one()
30 entry->name); in acpi_write_one()
38 if (entry->flags & ACPIWF_ALIGN64) in acpi_write_one()
44 ret = acpi_add_other_item(ctx, entry, ctx->tab_start); in acpi_write_one()
57 const struct acpi_writer *entry; in acpi_write_all() local
60 for (entry = writer; entry != writer + n_ents; entry++) { in acpi_write_all()
61 ret = acpi_write_one(ctx, entry); in acpi_write_all()
[all …]
A Dacpi_table.c179 entries_num = ARRAY_SIZE(rsdt->entry); in acpi_add_table()
182 if (rsdt->entry[i] == 0) in acpi_add_table()
192 rsdt->entry[i] = nomap_to_sysmem(table); in acpi_add_table()
210 entries_num = ARRAY_SIZE(xsdt->entry); in acpi_add_table()
213 if (xsdt->entry[i] == 0) in acpi_add_table()
223 xsdt->entry[i] = nomap_to_sysmem(table); in acpi_add_table()
236 int acpi_write_fadt(struct acpi_ctx *ctx, const struct acpi_writer *entry) in acpi_write_fadt() argument
277 int acpi_write_madt(struct acpi_ctx *ctx, const struct acpi_writer *entry) in acpi_write_madt() argument
421 static int acpi_write_spcr(struct acpi_ctx *ctx, const struct acpi_writer *entry) in acpi_write_spcr() argument
752 static int acpi_write_iort(struct acpi_ctx *ctx, const struct acpi_writer *entry) in acpi_write_iort() argument
A Dacpi.c46 hdr = nomap_sysmem(xsdt->entry[i], 0); in acpi_find_table()
48 hdr = nomap_sysmem(rsdt->entry[i], 0); in acpi_find_table()
/lib/efi_loader/
A Defi_esrt.c48 entry->fw_version = img_info->version; in efi_esrt_image_info_to_entry()
50 entry->fw_type = image_type; in efi_esrt_image_info_to_entry()
51 entry->capsule_flags = flags; in efi_esrt_image_info_to_entry()
59 entry->lowest_supported_fw_version = in efi_esrt_image_info_to_entry()
71 entry->last_attempt_version = in efi_esrt_image_info_to_entry()
74 entry->last_attempt_status = in efi_esrt_image_info_to_entry()
77 entry->last_attempt_version = 0; in efi_esrt_image_info_to_entry()
179 entry = esrt->entries; in esrt_find_entry()
186 return &entry[idx]; in esrt_find_entry()
209 return &entry[filled_entries]; in esrt_find_entry()
[all …]
A Defi_tcg2.c1090 const struct smbios3_entry *entry) in tcg2_measure_smbios() argument
1113 entry->table_maximum_size; in tcg2_measure_smbios()
1128 entry->table_maximum_size); in tcg2_measure_smbios()
1165 gpt_entry *entry = NULL; in tcg2_measure_gpt_data() local
1222 if (!entry) { in tcg2_measure_gpt_data()
1229 total_gpt_entry_size, entry); in tcg2_measure_gpt_data()
1234 gpt_e = entry; in tcg2_measure_gpt_data()
1254 gpt_e = entry; in tcg2_measure_gpt_data()
1271 free(entry); in tcg2_measure_gpt_data()
1362 struct smbios3_entry *entry; in efi_tcg2_measure_efi_app_invocation() local
[all …]
/lib/mbedtls/external/mbedtls/library/
A Dssl_cache.c81 mbedtls_ssl_cache_entry *entry; in mbedtls_ssl_cache_get() local
116 if (entry == NULL) { in ssl_cache_entry_zeroize()
121 if (entry->session != NULL) { in ssl_cache_entry_zeroize()
122 mbedtls_zeroize_and_free(entry->session, entry->session_len); in ssl_cache_entry_zeroize()
327 mbedtls_ssl_cache_entry *entry; in mbedtls_ssl_cache_remove() local
344 if (entry == cache->chain) { in mbedtls_ssl_cache_remove()
345 cache->chain = entry->next; in mbedtls_ssl_cache_remove()
349 if (prev->next == entry) { in mbedtls_ssl_cache_remove()
350 prev->next = entry->next; in mbedtls_ssl_cache_remove()
356 ssl_cache_entry_zeroize(entry); in mbedtls_ssl_cache_remove()
[all …]
A Dx509_crl.c217 mbedtls_x509_crl_entry *entry) in x509_get_entries() argument
221 mbedtls_x509_crl_entry *cur_entry = entry; in x509_get_entries()
600 const mbedtls_x509_crl_entry *entry; in mbedtls_x509_crl_info() local
628 entry = &crl->entry; in mbedtls_x509_crl_info()
634 while (entry != NULL && entry->raw.len != 0) { in mbedtls_x509_crl_info()
639 ret = mbedtls_x509_serial_gets(p, n, &entry->serial); in mbedtls_x509_crl_info()
644 entry->revocation_date.year, entry->revocation_date.mon, in mbedtls_x509_crl_info()
645 entry->revocation_date.day, entry->revocation_date.hour, in mbedtls_x509_crl_info()
646 entry->revocation_date.min, entry->revocation_date.sec); in mbedtls_x509_crl_info()
649 entry = entry->next; in mbedtls_x509_crl_info()
[all …]
A Dmd.c884 const md_name_entry *entry = md_names; in mbedtls_md_info_from_string() local
885 while (entry->md_name != NULL && in mbedtls_md_info_from_string()
886 strcmp(entry->md_name, md_name) != 0) { in mbedtls_md_info_from_string()
887 ++entry; in mbedtls_md_info_from_string()
890 return mbedtls_md_info_from_type(entry->md_type); in mbedtls_md_info_from_string()
899 const md_name_entry *entry = md_names; in mbedtls_md_get_name() local
900 while (entry->md_type != MBEDTLS_MD_NONE && in mbedtls_md_get_name()
901 entry->md_type != md_info->type) { in mbedtls_md_get_name()
902 ++entry; in mbedtls_md_get_name()
905 return entry->md_name; in mbedtls_md_get_name()
/lib/
A Dbinman.c64 struct binman_entry *entry) in binman_entry_find_internal() argument
74 ret = ofnode_read_u32(node, "image-pos", &entry->image_pos); in binman_entry_find_internal()
77 ret = ofnode_read_u32(node, "size", &entry->size); in binman_entry_find_internal()
84 int binman_entry_find(const char *name, struct binman_entry *entry) in binman_entry_find() argument
88 ret = binman_entry_find_internal(binman->image, name, entry); in binman_entry_find()
91 entry->image_pos -= binman->skip_at_start; in binman_entry_find()
98 struct binman_entry entry; in binman_entry_map() local
103 ret = binman_entry_find_internal(parent, name, &entry); in binman_entry_map()
107 *sizep = entry.size; in binman_entry_map()
108 *bufp = map_sysmem(entry.image_pos + binman->rom_offset, entry.size); in binman_entry_map()
A Dhashtable.c58 struct env_entry entry; member
210 *retval = &htab->table[idx].entry; in hmatch_r()
267 &htab->table[idx].entry, item.data, in _compare_and_overwrite_entry()
286 free(htab->table[idx].entry.data); in _compare_and_overwrite_entry()
288 if (!htab->table[idx].entry.data) { in _compare_and_overwrite_entry()
295 *retval = &htab->table[idx].entry; in _compare_and_overwrite_entry()
404 if (!htab->table[idx].entry.key || in hsearch_r()
405 !htab->table[idx].entry.data) { in hsearch_r()
414 env_callback_init(&htab->table[idx].entry); in hsearch_r()
416 env_flags_init(&htab->table[idx].entry); in hsearch_r()
[all …]
A Dsmbios-parser.c16 const struct smbios_entry *entry = (struct smbios_entry *)(uintptr_t)address; in smbios_entry() local
21 if (memcmp(entry->anchor, "_SM_", 4)) in smbios_entry()
24 if (table_compute_checksum(entry, entry->length)) in smbios_entry()
27 return entry; in smbios_entry()
49 const struct smbios_header *smbios_header(const struct smbios_entry *entry, int type) in smbios_header() argument
51 const unsigned int num_header = entry->struct_count; in smbios_header()
52 …const struct smbios_header *header = (struct smbios_header *)((uintptr_t)entry->struct_table_addre… in smbios_header()
226 void smbios_prepare_measurement(const struct smbios3_entry *entry, in smbios_prepare_measurement() argument
233 table_end = (void *)((u8 *)smbios_copy + entry->table_maximum_size); in smbios_prepare_measurement()
/lib/efi_selftest/
A Defi_selftest_memory.c66 struct efi_mem_desc *entry = &memory_map[i]; in find_in_memory_map() local
68 if (entry->physical_start != entry->virtual_start) { in find_in_memory_map()
73 if (addr >= entry->physical_start && in find_in_memory_map()
74 addr < entry->physical_start + in find_in_memory_map()
75 (entry->num_pages << EFI_PAGE_SHIFT)) { in find_in_memory_map()
81 if (memory_type != entry->type) { in find_in_memory_map()
84 entry->type, memory_type); in find_in_memory_map()
A Defi_selftest_debug_support.c64 struct efi_mem_desc *entry = &memory_map[i]; in efi_st_debug_support_execute() local
67 if (entry->type != EFI_RUNTIME_SERVICES_DATA) in efi_st_debug_support_execute()
70 end = entry->physical_start + in efi_st_debug_support_execute()
71 (entry->num_pages << EFI_PAGE_SHIFT); in efi_st_debug_support_execute()
72 for (u64 pos = ALIGN(entry->physical_start, SZ_4M); in efi_st_debug_support_execute()
78 if (pos < entry->physical_start) in efi_st_debug_support_execute()
A Defi_selftest_esrt.c120 struct efi_system_resource_entry *entry = esrt->entries; in lib_test_check_uuid_entry() local
123 if (!guidcmp(&entry[idx].fw_class, &img_info->image_type_id)) { in lib_test_check_uuid_entry()
124 if (entry[idx].fw_version != img_info->version) { in lib_test_check_uuid_entry()
130 if (entry[idx].lowest_supported_fw_version != in lib_test_check_uuid_entry()
137 if (entry[idx].last_attempt_version != in lib_test_check_uuid_entry()
144 if (entry[idx].last_attempt_status != in lib_test_check_uuid_entry()
/lib/mbedtls/external/mbedtls/docs/proposed/
A Dpsa-driver-interface.md107 …`"entry_points"` list either includes the entry point or includes an entry point family that inclu…
177 ### Driver entry points
179 #### Overview of driver entry points
590 ### Driver entry points for PAKE
604 ### Summary of entry points for PAKE
782 …e driver with an `"allocate_key"` entry point, the content of the key data buffer on entry is the …
818 ### Entropy collection entry point
907 This entry point has several roles:
914 ### Random generation entry points
992 #### The `"get_random"` entry point
[all …]
/lib/mbedtls/external/mbedtls/ChangeLog.d/
A D00README.md1 # Pending changelog entry directory
6 ## What requires a changelog entry?
8 Write a changelog entry if there is a user-visible change. This includes:
30 changelog entry, but not for deciding whether to write one.
32 ## Changelog entry file format
34 A changelog entry file must have the extension `*.txt` and must have the
49 The permitted changelog entry categories are as follows:
64 ## How to write a changelog entry
66 Each entry starts with three spaces, an asterisk and a space. Continuation
/lib/mbedtls/external/mbedtls/docs/
A Dpsa-driver-example-and-guide.md10 [Process for Entry Points where auto-generation is implemented](#process-for-entry-points-where-aut…
11 [Process for Entry Points where auto-generation is not implemented](#process-for-entry-points-where…
27 …he operation entry points specified in the table below. Certain operations are only permitted for …
77entry points that have driver wrapper auto-generation implemented, the functions have been replace…
79 **5. If a driver entry point function has been provided then ensure it has the same signature as th…
88 …* **Transparent drivers:** Calls to driver entry points go under `case PSA_KEY_LOCATION_LOCAL_STOR…
89 …* **Opaque Drivers** Calls to driver entry points go in a separate `case` block corresponding to t…
102 | | | | ├── foo_driver_transparent_xxx() //call to driver entry point
107 | | | | ├── bar_driver_transparent_xxx() //call to driver entry point
116 | | | | ├── baz_driver_opaque_xxx() //call to driver entry point
[all …]
/lib/lwip/lwip/src/netif/ppp/
A Dmultilink.c308 char entry[32]; in make_bundle_links() local
313 slprintf(entry, sizeof(entry), "%s;", db_key); in make_bundle_links()
314 p = entry; in make_bundle_links()
324 l = rec.dsize + strlen(entry); in make_bundle_links()
328 slprintf(p, l, "%s%s", rec.dptr, entry); in make_bundle_links()
340 if (p != entry) in make_bundle_links()
347 char entry[32]; in remove_bundle_link() local
353 slprintf(entry, sizeof(entry), "%s;", db_key); in remove_bundle_link()
362 p = strstr(rec.dptr, entry); in remove_bundle_link()
364 q = p + strlen(entry); in remove_bundle_link()
/lib/lwip/lwip/contrib/addons/ipv6_static_routing/
A DREADME27    matching route entry for a Longest Prefix Match.
33 -- The application can find a route entry for a specific address using the 
34    ip6_find_route_entry() function which returns the index of the found entry
/lib/mbedtls/external/mbedtls/docs/architecture/
A Dpsa-storage-resilience.md169 1. Call the driver's `"allocate_key"` entry point.
172 4. Call the driver's key creation entry point.
183 2. Call the driver's `"destroy_key"` entry point.
198 1. Call the driver's `"allocate_key"` entry point.
200 3. Call the driver's key creation entry point.
208 3. Call the driver's `"destroy_key"` entry point.
223 1. Call the driver's `"allocate_key"` entry point.
226 4. Call the driver's key creation entry point.
232 2. Call the driver's `"destroy_key"` entry point.
416 4. Call the secure element's key creation entry point.
[all …]
/lib/mbedtls/external/mbedtls/scripts/data_files/driver_templates/
A DOS-template-opaque.jinja4 * entry_point: the name of the entry point that this function dispatches to.
5 * entry_point_param(driver): the parameters to pass to the entry point.
A DOS-template-transparent.jinja4 * entry_point: the name of the entry point that this function dispatches to.
5 * entry_point_param(driver): the parameters to pass to the entry point.
/lib/lwip/lwip/contrib/apps/LwipMibCompiler/Mibs/IANA/
A DIANA-PRINTER-MIB118 -- prtChannelInformation entry:
129 -- prtChannelInformation entry:
140 -- For each entry of this type, the
192 -- For each entry of this type, the
283 -- prtChannelInformation entry:
324 -- Port or Service entry must be
338 -- prtChannelInformation entry:
403 -- one "Node" and one "Socket" entry. A
415 -- prtChannelInformation entry:
495 -- (one per IPP Channel entry).
[all …]

Completed in 76 milliseconds

123