Searched defs:entry (Results 1 - 25 of 174) sorted by relevance

1234567

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Gen/
H A Dreaddir.c2 Get next entry in a directory.
58 * get next entry in a directory.
105 readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result) argument
116 memcpy(entry, dp, (size_t)_DIRENT_SIZE(dp));
122 memcpy(entry, dp, (size_t)_DIRENT_SIZE(dp));
131 *result = entry;
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/image/
H A Delfboot.c44 physaddr_t entry; local
49 if ( ( rc = elf_load ( image, &entry, &max ) ) != 0 ) {
61 DBGC ( image, "ELF %p starting execution at %lx\n", image, entry );
65 : : "D" ( entry )
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pcbios/
H A Dbios_smbios.c39 * @v smbios SMBIOS entry point descriptor structure to fill in
44 struct smbios_entry entry; member in union:__anon15057
56 copy_from_real ( &u.entry, BIOS_SEG, offset,
57 sizeof ( u.entry ));
58 if ( u.entry.signature != SMBIOS_SIGNATURE )
62 len = u.entry.len;
74 DBG ( "Found SMBIOS v%d.%d entry point at %04x:%04x\n",
75 u.entry.major, u.entry.minor, BIOS_SEG, offset );
76 smbios->address = phys_to_user ( u.entry
[all...]
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsTHashtable.cpp43 PLDHashEntryHdr *entry,
42 PL_DHashStubEnumRemove(PLDHashTable *table, PLDHashEntryHdr *entry, PRUint32 ordinal, void *userarg) argument
H A DnsFixedSizeAllocator.cpp143 FreeEntry* entry = NS_REINTERPRET_CAST(FreeEntry*, aPtr); local
151 entry->mNext = bucket->mFirst;
152 bucket->mFirst = entry;
H A DnsStaticNameTable.cpp62 const NameTableEntry* entry = local
66 return (nsCRT::strcasecmp(entry->mKey, keyValue)==0);
159 NameTableEntry *entry = local
163 if (!entry) continue;
165 NS_ASSERTION(entry->mKey == 0, "Entry already exists!");
167 entry->mKey = raw; // not owned!
168 entry->mIndex = index;
177 NameTableEntry *entry = local
181 if (PL_DHASH_ENTRY_IS_FREE(entry))
184 return entry
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pxeparent/
H A Dpxeparent.c108 /** PXE parent entry point
119 * @v entry Parent PXE stack entry point
125 int pxeparent_call ( SEGOFF16_t entry, unsigned int function, argument
131 /* Copy parameter block and entry point */
134 memcpy ( &pxeparent_entry_point, &entry, sizeof ( entry ) );
136 /* Call real-mode entry point. This calling convention will
137 * work with both the !PXE and the PXENV+ entry points.
178 "%#02zx, entry poin
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/
H A Dath_key.c41 int ath_hw_keyreset(struct ath_common *common, u16 entry) argument
46 if (entry >= common->keymax) {
47 DBG("ath: keycache entry %d out of range\n", entry);
51 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
55 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
56 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
57 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
58 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
59 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry),
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Dlist.h41 __list_add(struct list *entry, argument
45 next->prev = entry;
46 entry->next = next;
47 entry->prev = prev;
48 prev->next = entry;
52 list_add(struct list *entry, struct list *head) argument
54 __list_add(entry, head, head->next);
65 list_del(struct list *entry) argument
67 __list_del(entry->prev, entry
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Dlist.h41 __list_add(struct list *entry, argument
45 next->prev = entry;
46 entry->next = next;
47 entry->prev = prev;
48 prev->next = entry;
52 list_add(struct list *entry, struct list *head) argument
54 __list_add(entry, head, head->next);
65 list_del(struct list *entry) argument
67 __list_del(entry->prev, entry
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A Dlist.h41 __list_add(struct list *entry, argument
45 next->prev = entry;
46 entry->next = next;
47 entry->prev = prev;
48 prev->next = entry;
52 list_add(struct list *entry, struct list *head) argument
54 __list_add(entry, head, head->next);
65 list_del(struct list *entry) argument
67 __list_del(entry->prev, entry
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A Dlist.h53 * struct list entry;
67 * list_add(&foo->entry, &bar.foos);
71 * list_del(&foo->entry);
81 * list_for_each_entry(iterator, &bar.foos, entry) {
90 * list_for_each_entry_safe(iterator, next, &bar.foos, entry) {
92 * list_del(&iterator->entry);
132 __list_add(struct list *entry, argument
136 next->prev = entry;
137 entry->next = next;
138 entry
157 list_add(struct list *entry, struct list *head) argument
184 list_del(struct list *entry) argument
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/image/
H A Delf.c49 * @ret entry Entry point, if found
54 Elf_Ehdr *ehdr, physaddr_t *entry,
109 *entry = ehdr->e_entry;
110 DBGC ( image, "ELF %p found physical entry point at %lx\n",
111 image, *entry );
114 if ( ! *entry ) {
115 *entry = ( dest + e_offset );
116 DBGC ( image, "ELF %p found virtual entry point at %lx"
117 " (virt %lx)\n", image, *entry,
129 * @ret entry Entr
53 elf_load_segment( struct image *image, Elf_Phdr *phdr, Elf_Ehdr *ehdr, physaddr_t *entry, physaddr_t *max ) argument
133 elf_load( struct image *image, physaddr_t *entry, physaddr_t *max ) argument
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/include/
H A Dundi.h28 SEGOFF16_t entry; member in struct:undi_device
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dfnrec.c46 /** A trace buffer entry */
65 /** Next trace buffer entry to fill */
102 * Append an entry to the trace buffer
106 * @ret entry Trace buffer entry
109 struct fnrec_entry *entry; local
111 /* Re-use existing entry, if possible */
112 entry = &fnrec_buffer->data[ fnrec_buffer->idx ];
113 if ( ( entry->called_fn == called_fn ) &&
114 ( entry
135 struct fnrec_entry *entry; local
183 struct fnrec_entry *entry; local
194 struct fnrec_entry *entry; local
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/tests/
H A Dlist_test.c70 struct list_test *entry; local
74 list_for_each_entry ( entry, list, list )
84 list_for_each_entry ( entry, list, list )
85 *(tmp++) = entry->label;
91 list_for_each_entry_reverse ( entry, list, list )
92 *(--tmp) = entry->label;
132 struct list_test *entry = \
135 ok ( entry->label == *(check++) ); \
141 * Report list entry iteration test result
229 /* Test list_cut_position() - singular list, move singular entry */
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dpalette.c94 BYTE *entry = (BYTE *)entries; local
98 *entry++ = palette->palents[i].peRed;
117 const BYTE *entry = (const BYTE *)entries; local
121 palette->palents[i].peRed = *entry++;
127 /* When WINEDDCAPS_ALLOW256 isn't set we need to override entry 0 with black and 255 with white */
130 TRACE("WINEDDPCAPS_ALLOW256 set, overriding palette entry 0 with black and 255 with white\n");
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dpthread.h52 void (*entry)( struct wine_pthread_thread_info *info ); /* thread entry point */ member in struct:wine_pthread_thread_info
/vbox/src/libs/xpcom18a4/xpcom/components/
H A DnsIServiceManagerUtils.h139 do_GetServiceFromCategory( const char* category, const char* entry, argument
142 return nsGetServiceFromCategory(category, entry, 0, error);
/vbox/src/libs/xpcom18a4/xpcom/glue/
H A DnsServiceManagerUtils.h137 do_GetServiceFromCategory( const char* category, const char* entry, argument
140 return nsGetServiceFromCategory(category, entry, 0, error);
/vbox/src/libs/xpcom18a4/xpcom/threads/
H A DnsEnvironment.cpp182 EnvEntryType* entry = gEnvHash->PutEntry(nativeName); local
183 if (!entry) {
195 if (entry->mData) {
196 PR_smprintf_free(entry->mData);
198 entry->mData = newData;
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dlist.h56 * struct xorg_list entry;
70 * xorg_list_add(&foo->entry, &bar.list_of_foos);
74 * xorg_list_del(&foo->entry);
84 * xorg_list_for_each_entry(iterator, &bar.list_of_foos, entry) {
93 * xorg_list_for_each_entry_safe(iterator, next, &bar.list_of_foos, entry) {
95 * xorg_list_del(&iterator->entry);
129 __xorg_list_add(struct xorg_list *entry, argument
132 next->prev = entry;
133 entry->next = next;
134 entry
154 xorg_list_add(struct xorg_list *entry, struct xorg_list *head) argument
175 xorg_list_append(struct xorg_list *entry, struct xorg_list *head) argument
202 xorg_list_del(struct xorg_list *entry) argument
[all...]
H A Dparser.h96 DMXConfigEntryPtr entry; member in union:YYSTYPE
H A Dsyncsrv.h87 struct xorg_list entry; member in struct:_SysCounterInfo
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dlist.h56 * struct xorg_list entry;
70 * xorg_list_add(&foo->entry, &bar.list_of_foos);
74 * xorg_list_del(&foo->entry);
84 * xorg_list_for_each_entry(iterator, &bar.list_of_foos, entry) {
93 * xorg_list_for_each_entry_safe(iterator, next, &bar.list_of_foos, entry) {
95 * xorg_list_del(&iterator->entry);
129 __xorg_list_add(struct xorg_list *entry, argument
132 next->prev = entry;
133 entry->next = next;
134 entry
154 xorg_list_add(struct xorg_list *entry, struct xorg_list *head) argument
175 xorg_list_append(struct xorg_list *entry, struct xorg_list *head) argument
202 xorg_list_del(struct xorg_list *entry) argument
[all...]

Completed in 662 milliseconds

1234567