/vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Gen/ |
H A D | readdir.c | 2 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 D | elfboot.c | 44 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 D | bios_smbios.c | 39 * @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 D | nsTHashtable.cpp | 43 PLDHashEntryHdr *entry, 42 PL_DHashStubEnumRemove(PLDHashTable *table, PLDHashEntryHdr *entry, PRUint32 ordinal, void *userarg) argument
|
H A D | nsFixedSizeAllocator.cpp | 143 FreeEntry* entry = NS_REINTERPRET_CAST(FreeEntry*, aPtr); local 151 entry->mNext = bucket->mFirst; 152 bucket->mFirst = entry;
|
H A D | nsStaticNameTable.cpp | 62 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 D | pxeparent.c | 108 /** 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 D | ath_key.c | 41 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 D | list.h | 41 __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 D | list.h | 41 __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 D | list.h | 41 __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 D | list.h | 53 * 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 D | elf.c | 49 * @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 D | undi.h | 28 SEGOFF16_t entry; member in struct:undi_device
|
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | fnrec.c | 46 /** 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 D | list_test.c | 70 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 D | palette.c | 94 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 D | pthread.h | 52 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 D | nsIServiceManagerUtils.h | 139 do_GetServiceFromCategory( const char* category, const char* entry, argument 142 return nsGetServiceFromCategory(category, entry, 0, error);
|
/vbox/src/libs/xpcom18a4/xpcom/glue/ |
H A D | nsServiceManagerUtils.h | 137 do_GetServiceFromCategory( const char* category, const char* entry, argument 140 return nsGetServiceFromCategory(category, entry, 0, error);
|
/vbox/src/libs/xpcom18a4/xpcom/threads/ |
H A D | nsEnvironment.cpp | 182 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 D | list.h | 56 * 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 D | parser.h | 96 DMXConfigEntryPtr entry; member in union:YYSTYPE
|
H A D | syncsrv.h | 87 struct xorg_list entry; member in struct:_SysCounterInfo
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/ |
H A D | list.h | 56 * 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...] |