Searched defs:flag (Results 1 - 25 of 80) sorted by relevance

1234

/vbox/src/libs/xpcom18a4/nsprpub/pr/src/pthreads/
H A Dptmisc.c66 PR_IMPLEMENT(void) PR_SetThreadRecycleMode(PRUint32 flag) argument
/vbox/src/VBox/Runtime/common/math/x86/
H A Dfenv-x86.c71 int flag, nflag; local
75 getfl(&flag);
76 nflag = flag ^ 0x200000;
79 if (flag != nflag) {
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dgetopt.h37 int *flag; member in struct:option
40 * If @c flag is NULL, then this is the value that will be
45 * If @c flag is non-NULL, then this value will be written to
46 * the location pointed to by @flag, and getopt_long() will
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/bthreads/
H A Dbtmisc.c80 PR_SetThreadRecycleMode (PRUint32 flag) argument
/vbox/src/VBox/Devices/Audio/
H A Ddsound_template.h86 DWORD flag; local
89 flag = entire ? DSCBLOCK_ENTIREBUFFER : 0;
91 flag = entire ? DSBLOCK_ENTIREBUFFER : 0;
103 flag
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/drivers/dri/common/
H A Dutils.h40 unsigned flag; member in struct:dri_debug_control
/vbox/src/VBox/Additions/os2/VBoxSF/
H A DVBoxSFFind.cpp53 USHORT level, ULONG position, PCSZ pszName, USHORT flag)
61 USHORT level, USHORT flag)
52 FS32_FINDFROMNAME(PFSFSI pfsfsi, PVBOXSFFS pfsfsd, PBYTE pbData, USHORT cbData, PUSHORT pcMatch, USHORT level, ULONG position, PCSZ pszName, USHORT flag) argument
60 FS32_FINDNEXT(PFSFSI pfsfsi, PVBOXSFFS pfsfsd, PBYTE pbData, USHORT cbData, PUSHORT pcMatch, USHORT level, USHORT flag) argument
H A DVBoxSF.cpp57 FS32_ATTACH(ULONG flag, PCSZ pszDev, PVBOXSFVP pvpfsd, PVBOXSFCD pcdfsd, PBYTE pszParm, PUSHORT pcbParm) argument
64 FS32_FLUSHBUF(USHORT hVPB, ULONG flag) argument
71 FS32_FSINFO(ULONG flag, USHORT hVPB, PBYTE pbData, USHORT cbData, ULONG level) argument
94 FS32_CHDIR(ULONG flag, PCDFSI pcdfsi, PVBOXSFCD pcdfsd, PCSZ pszDir, USHORT iCurDirEnd) argument
102 PBYTE pEABuf, ULONG flag)
116 FS32_COPY(USHORT flag, PCDFSI pcdfsi, PVBOXSFCD pcdfsd, PCSZ pszSrc, USHORT iSrcCurDirEnd, argument
139 FS32_FILEATTRIBUTE(ULONG flag, PCDFSI pcdfsi, PVBOXSFCD pcdfsd, PCSZ pszName, USHORT iCurDirEnd, PUSHORT pAttr) argument
146 FS32_PATHINFO(USHORT flag, PCDFSI pcdfsi, PVBOXSFCD pcdfsd, PCSZ pszName, USHORT iCurDirEnt, argument
154 FS32_MOUNT(USHORT flag, PVPFSI pvpfsi, PVBOXSFVP pvpfsd, USHORT hVPB, PCSZ pszBoot) argument
101 FS32_MKDIR(PCDFSI pcdfsi, PVBOXSFCD pcdfsd, PCSZ pszName, USHORT iCurDirEnd, PBYTE pEABuf, ULONG flag) argument
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/
H A Dselect.c118 static int16_t flag[3] = { POLLRDNORM, POLLWRNORM, POLLRDBAND }; local
129 pfd.events = flag[msk];
/vbox/src/libs/libxml2-2.6.31/
H A DgenUnicode.py280 flag = 0 variable
283 if flag:
286 flag = 1 variable
291 flag = 0; variable
293 if flag:
296 flag = 1 variable
382 flag = 0 variable
384 if flag:
387 flag = 1 variable
/vbox/src/libs/xpcom18a4/ipc/ipcd/shared/src/
H A DipcMessage.h76 // synchronous message. the client sets the SYNC_QUERY flag to indicate that
77 // it is expecting a response with the SYNC_REPLY flag set.
83 // a special flag to prevent repeated processing of the same message by two
145 void SetFlag(PRUint16 flag) { mMsgHdr->mFlags |= flag; } argument
146 void ClearFlag(PRUint16 flag) { mMsgHdr->mFlags &= ~flag; } argument
147 PRBool TestFlag(PRUint16 flag) const { return mMsgHdr->mFlags & flag; }
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/
H A Dprpolevt.c64 * On OpenVMS we use an event flag instead of a pipe or a socket since
75 int flag = -1; local
79 ** Allocate an event flag and clear it.
81 status = lib$get_ef(&flag);
82 if ((!$VMS_STATUS_SUCCESS(status)) || (flag == -1)) {
86 sys$clref(flag);
89 ** Give NSPR the event flag's negative value. We do this because our
90 ** select interprets a negative fd as an event flag rather than a
93 event = PR_CreateSocketPollFd(-flag);
95 lib$free_ef(&flag);
104 int flag = -PR_FileDesc2NativeHandle(event); local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dgetnetbydns.c128 char *paux1 = &aux1[0], *paux2 = &aux2[0], flag = 0; local
208 if (nchar != 1 || *in != '0' || flag) {
209 flag = 1;
/vbox/src/VBox/Devices/Network/lwip/src/core/
H A Dpbuf.c189 * @param flag this parameter decides how and where the pbuf
212 pbuf_alloc(pbuf_layer l, u16_t length, pbuf_flag flag) argument
241 switch (flag) {
326 LWIP_DEBUGF(PBUF_DEBUG | DBG_TRACE | 2, ("pbuf_alloc: Could not allocate MEMP_PBUF for PBUF_%s.\n", flag == PBUF_ROM?"ROM":"REF"));
333 p->flags = (flag == PBUF_ROM? PBUF_FLAG_ROM: PBUF_FLAG_REF);
336 LWIP_ASSERT("pbuf_alloc: erroneous flag", 0);
/vbox/src/VBox/Devices/PC/BIOS/
H A Dkeyboard.c346 uint8_t mf2_flags, mf2_state, flag; local
384 flag = (scancode & 0x7f) == 0x2a ? 0x02 : 0x01;
386 shift_flags &= ~flag;
388 shift_flags |= flag;
482 flag = read_byte(0x0040, 0x97) | 0x10;
483 write_byte(0x0040, 0x97, flag);
485 flag = read_byte(0x0040, 0x97) | 0x20;
486 write_byte(0x0040, 0x97, flag);
639 case 0x02: /* get shift flag status */
/vbox/src/VBox/Devices/PC/ipxe/contrib/rom-o-matic/
H A Dutils.php23 require_once "flag-table.php";
187 * @param string $flag name of form variable to set
192 function hidden ( $flag, $value )
195 return "<input type=\"hidden\" value=\"$value\" name=\"$flag\"></input>";
201 * @param string $flag name of form variable to set
206 function checkbox ( $flag, $value )
208 return "<input type=\"checkbox\" value=\"on\" name=\"$flag\"" .
215 * @param string $flag name of form variable to set
221 function textbox ( $flag, $value, $size )
224 return "<input type=\"text\" size=\"$size\" value=\"$value\" name=\"$flag\">";
311 $flag = $props["flag"]; variable
343 $flag = $props["flag"]; variable
418 $flag = $props["flag"]; variable
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/bus/
H A Dpcivpd.c75 uint16_t flag; local
95 pci_read_config_word ( pci, ( cap + PCI_VPD_ADDRESS ), &flag );
96 if ( flag & PCI_VPD_FLAG ) {
133 uint16_t flag; local
156 pci_read_config_word ( pci, ( cap + PCI_VPD_ADDRESS ), &flag );
157 if ( ! ( flag & PCI_VPD_FLAG ) )
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/uts/common/dtrace/
H A Dlockstat.c157 lockstat_open(dev_t *devp, int flag, int otyp, cred_t *cred_p) argument
299 D_MP | D_NEW /* Driver compatibility flag */
H A Dsystrace.c305 systrace_open(dev_t *devp, int flag, int otyp, cred_t *cred_p) argument
325 D_NEW | D_MP /* Driver compatibility flag */
/vbox/src/VBox/Additions/solaris/SharedFolders/
H A Dvboxfs_vfs.c70 static int sffs_unmount(vfs_t *vfsp, int flag, cred_t *cr);
488 sffs_unmount(vfs_t *vfsp, int flag, cred_t *cr) argument
504 if (flag & MS_FORCE)
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dsurface_gdi.c533 * are set to the real sizes to save memory. The NONPOW2 flag is unset to
621 static void WINAPI IWineGDISurfaceImpl_ModifyLocation(IWineD3DSurface *iface, DWORD flag, BOOL persistent) { argument
623 flag == SFLAG_INSYSMEM ? "SFLAG_INSYSMEM" : flag == SFLAG_INDRAWABLE ? "SFLAG_INDRAWABLE" : "SFLAG_INTEXTURE",
626 if(flag != SFLAG_INSYSMEM) {
627 ERR("GDI Surface requested in gl %s memory\n", flag == SFLAG_INDRAWABLE ? "drawable" : "texture");
631 static HRESULT WINAPI IWineGDISurfaceImpl_LoadLocation(IWineD3DSurface *iface, DWORD flag, const RECT *rect) { argument
632 if(flag != SFLAG_INSYSMEM) {
633 ERR("GDI Surface requested to be copied to gl %s\n", flag == SFLAG_INTEXTURE ? "texture" : "drawable");
/vbox/src/libs/xpcom18a4/ipc/ipcd/extensions/lock/src/module/
H A DipcLockModule.cpp106 ipcLockModule_FreeEntry(void *pool, PLHashEntry *he, PRUintn flag) argument
/vbox/src/libs/xpcom18a4/nsprpub/lib/ds/
H A Dplhash.c96 DefaultFreeEntry(void *pool, PLHashEntry *he, PRUintn flag) argument
102 if (flag == HT_FREE_ENTRY)
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/private/
H A Dpprthred.h177 NSPR_API(void) PR_SetThreadRecycleMode(PRUint32 flag); variable
/vbox/src/libs/zlib-1.2.6/contrib/minizip/
H A Dunzip.h115 uLong flag; /* general purpose bit flag 2 bytes */ member in struct:unz_file_info64_s
136 uLong flag; /* general purpose bit flag 2 bytes */ member in struct:unz_file_info_s

Completed in 146 milliseconds

1234