Home
last modified time | relevance | path

Searched refs:next_entry (Results 1 – 25 of 27) sorted by relevance

12

/freebsd-12.1/sys/security/mac_veriexec_parser/
H A Dmac_veriexec_parser.c385 char *next_entry; in parse_manifest() local
400 next_entry = strchr(entry, '\n'); in parse_manifest()
401 if (next_entry != NULL) { in parse_manifest()
402 *next_entry = '\0'; in parse_manifest()
403 next_entry++; in parse_manifest()
406 entry = next_entry; in parse_manifest()
415 entry = next_entry; in parse_manifest()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DUniqueCStringMap.h153 const Entry *next_entry = entry_ptr + 1; in FindNextValueForName() local
154 if (first_entry <= next_entry && next_entry < after_last_entry) { in FindNextValueForName()
155 if (next_entry->cstring == entry_ptr->cstring) in FindNextValueForName()
156 return next_entry; in FindNextValueForName()
/freebsd-12.1/contrib/wpa/src/utils/
H A Dradiotap.c248 goto next_entry; /* arg not present */ in ieee80211_radiotap_iterator_next()
281 goto next_entry; in ieee80211_radiotap_iterator_next()
364 goto next_entry; in ieee80211_radiotap_iterator_next()
369 goto next_entry; in ieee80211_radiotap_iterator_next()
387 next_entry: in ieee80211_radiotap_iterator_next()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/
H A DGDBRegistrationListener.cpp33 struct jit_code_entry *next_entry; member
128 JITCodeEntry->next_entry = NextEntry; in NotifyDebugger()
202 jit_code_entry* NextEntry = JITCodeEntry->next_entry; in deregisterObjectInternal()
208 PrevEntry->next_entry = NextEntry; in deregisterObjectInternal()
/freebsd-12.1/contrib/libarchive/libarchive/
H A Darchive_entry_link_resolver.c96 static struct links_entry *next_entry(struct archive_entry_linkresolver *,
167 while ((le = next_entry(res, NEXT_ENTRY_ALL)) != NULL) in archive_entry_linkresolver_free()
183 le = next_entry(res, NEXT_ENTRY_DEFERRED); in archive_entry_linkify()
313 next_entry(struct archive_entry_linkresolver *res, int mode) in next_entry() function
435 le = next_entry(res, NEXT_ENTRY_PARTIAL); in archive_entry_partial_links()
H A Darchive_read_support_format_iso9660.c444 #define next_entry(iso9660) \ macro
2743 *pfile = file = next_entry(iso9660); in next_cache_entry()
2890 file = next_entry(iso9660); in next_cache_entry()
H A Darchive_read_disk_posix.c853 next_entry(struct archive_read_disk *a, struct tree *t, in next_entry() function
1149 r = next_entry(a, t, entry); in _archive_read_next_header2()
/freebsd-12.1/sys/dev/netmap/
H A Dnetmap_kloop.c462 unsigned int next_entry; member
480 poll_ctx->next_entry; in sync_kloop_poll_table_queue_proc()
482 BUG_ON(poll_ctx->next_entry >= poll_ctx->num_entries); in sync_kloop_poll_table_queue_proc()
706 poll_ctx->next_entry = 0; in netmap_sync_kloop()
725 for (i = 0; i < num_rings; i++, poll_ctx->next_entry++) { in netmap_sync_kloop()
797 poll_ctx->next_entry++; in netmap_sync_kloop()
803 poll_ctx->next_entry++; in netmap_sync_kloop()
869 for (i = 0; i < poll_ctx->next_entry; i++) { in netmap_sync_kloop()
/freebsd-12.1/contrib/elftoolchain/libdwarf/
H A Ddwarf_loclist.c175 Dwarf_Unsigned *entry_len, Dwarf_Unsigned *next_entry, in dwarf_get_loclist_entry() argument
190 entry_len == NULL || next_entry == NULL) { in dwarf_get_loclist_entry()
220 *next_entry = offset + *entry_len; in dwarf_get_loclist_entry()
/freebsd-12.1/contrib/ncurses/progs/
H A Dinfocmp.c417 #define next_entry (&(entries[extra++].tterm)) macro
439 b2 = next_entry->Booleans[idx]; in compare_predicate()
452 b2 = next_entry->Booleans[idx]; in compare_predicate()
468 b2 = next_entry->Booleans[idx]; in compare_predicate()
487 n2 = next_entry->Numbers[idx]; in compare_predicate()
499 n2 = next_entry->Numbers[idx]; in compare_predicate()
516 n2 = next_entry->Numbers[idx]; in compare_predicate()
535 s2 = next_entry->Strings[idx]; in compare_predicate()
548 s2 = next_entry->Strings[idx]; in compare_predicate()
564 s2 = next_entry->Strings[idx]; in compare_predicate()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DDWARFCallFrameInfo.cpp437 dw_offset_t cie_id, next_entry, cie_offset; in GetFDEIndex() local
443 next_entry = current_entry + len + 12; in GetFDEIndex()
447 next_entry = current_entry + len + 4; in GetFDEIndex()
451 if (next_entry > m_cfi_data.GetByteSize() + 1) { in GetFDEIndex()
455 next_entry, current_entry); in GetFDEIndex()
477 offset = next_entry; in GetFDEIndex()
519 offset = next_entry; in GetFDEIndex()
H A DCompactUnwindInfo.cpp471 uint32_t next_entry = m_unwindinfo_data.GetU32(&offset); // entry in BinarySearchCompressedSecondPage() local
472 next_func_offset = UNWIND_INFO_COMPRESSED_ENTRY_FUNC_OFFSET(next_entry); in BinarySearchCompressedSecondPage()
H A DSymtab.cpp946 FileRangeToIndexMap::Entry *next_entry = in InitAddressIndexes() local
948 addr_t next_base_addr = next_entry->GetRangeBase(); in InitAddressIndexes()
/freebsd-12.1/sys/dev/ofw/
H A Dopenfirm.c96 SLIST_ENTRY(xrefinfo) next_entry;
139 SLIST_INSERT_HEAD(&xreflist, xi, next_entry); in xrefinfo_create()
165 SLIST_FOREACH(xi, &xreflist, next_entry) { in xrefinfo_find()
187 SLIST_INSERT_HEAD(&xreflist, xi, next_entry); in xrefinfo_add()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.cpp46 ptr_t next_entry; // pointer member
114 entry->next_entry = extractor.GetPointer(&offset); in ReadJITEntry()
386 jit_relevant_entry = (addr_t)jit_entry.next_entry; in ReadJITDescriptorImpl()
/freebsd-12.1/contrib/subversion/subversion/libsvn_subr/
H A Dcache-inprocess.c124 struct cache_entry *next_entry; member
294 e = e->next_entry) in erase_page()
417 new_entry->next_entry = page->first_entry; in inprocess_cache_set_internal()
/freebsd-12.1/stand/i386/boot0/
H A Dboot0.S270 jnc next_entry # No
273 jz next_entry
295 next_entry: incw %dx # Next item label
/freebsd-12.1/crypto/heimdal/lib/krb5/
H A Dkeytab.c762 if(id->next_entry == NULL) { in krb5_kt_next_entry()
769 return (*id->next_entry)(context, id, entry, cursor); in krb5_kt_next_entry()
H A Dkrb5.h579 krb5_error_code (KRB5_CALLCONV * next_entry)(krb5_context, krb5_keytab,
/freebsd-12.1/contrib/libarchive/tar/
H A Dwrite.c543 goto next_entry; in write_archive()
560 goto next_entry; in write_archive()
565 next_entry: in write_archive()
/freebsd-12.1/sys/dev/mlx4/mlx4_ib/
H A Dmlx4_ib_alias_GUID.c346 goto next_entry; in aliasguid_query_handler()
394 goto next_entry; in aliasguid_query_handler()
410 next_entry: in aliasguid_query_handler()
/freebsd-12.1/sys/compat/linux/
H A Dlinux_futex.c1276 struct linux_robust_list *entry, *next_entry, *pending; in release_futexes() local
1309 rc = fetch_robust_entry(&next_entry, PTRIN(&entry->next), &next_pi); in release_futexes()
1322 entry = next_entry; in release_futexes()
/freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dspace_map.c594 uint64_t *next_entry = block_cursor + 1; in space_map_write_seg() local
595 if (next_entry == block_end && words > 1) { in space_map_write_seg()
/freebsd-12.1/contrib/ntp/ntpd/
H A Dntp_io.c2097 remaddr_t * next_entry; in create_interface() local
2159 entry = next_entry) { in create_interface()
2160 next_entry = entry->link; in create_interface()
/freebsd-12.1/sys/cam/
H A Dcam_xpt.c4414 struct async_node *next_entry; in xpt_async_bcast() local
4420 next_entry = SLIST_NEXT(cur_entry, links); in xpt_async_bcast()
4432 cur_entry = next_entry; in xpt_async_bcast()

12