Searched defs:fFlags (Results 101 - 125 of 523) sorted by relevance

1234567891011>>

/vbox/src/VBox/Runtime/r3/posix/
H A DldrNative-posix.cpp43 int rtldrNativeLoad(const char *pszFilename, uintptr_t *phHandle, uint32_t fFlags, PRTERRINFO pErrInfo) argument
72 if (fFlags & RTLDRLOAD_FLAGS_GLOBAL)
111 if ( (pModNative->fFlags & RTLDRLOAD_FLAGS_NO_UNLOAD)
122 int rtldrNativeLoadSystem(const char *pszFilename, const char *pszExt, uint32_t fFlags, PRTLDRMOD phLdrMod) argument
H A Dpath2-posix.cpp58 RTR3DECL(int) RTPathQueryInfoEx(const char *pszPath, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags) argument
70 AssertMsgReturn(RTPATH_F_IS_VALID(fFlags, 0), ("%#x\n", fFlags), VERR_INVALID_PARAMETER); local
80 if (fFlags & RTPATH_F_FOLLOW_LINK)
132 PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime, uint32_t fFlags)
143 AssertMsgReturn(RTPATH_F_IS_VALID(fFlags, 0), ("%#x\n", fFlags), VERR_INVALID_PARAMETER); local
158 rc = RTPathQueryInfoEx(pszPath, &ObjInfo, RTFSOBJATTRADD_NOTHING, fFlags);
173 rc = RTPathQueryInfoEx(pszPath, &ObjInfo, RTFSOBJATTRADD_UNIX, fFlags);
185 if (fFlags
131 RTPathSetTimesEx(const char *pszPath, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime, uint32_t fFlags) argument
234 RTPathSetOwnerEx(const char *pszPath, uint32_t uid, uint32_t gid, uint32_t fFlags) argument
241 AssertMsgReturn(RTPATH_F_IS_VALID(fFlags, 0), ("%#x\\n", fFlags), VERR_INVALID_PARAMETER); local
[all...]
H A Dprocess-posix.cpp56 RTR3DECL(int) RTProcWait(RTPROCESS Process, unsigned fFlags, PRTPROCSTATUS pProcStatus) argument
59 do rc = RTProcWaitNoResume(Process, fFlags, pProcStatus);
65 RTR3DECL(int) RTProcWaitNoResume(RTPROCESS Process, unsigned fFlags, PRTPROCSTATUS pProcStatus) argument
75 if (fFlags & ~(RTPROCWAIT_FLAGS_NOBLOCK | RTPROCWAIT_FLAGS_BLOCK))
77 AssertMsgFailed(("Invalid flags %#x\n", fFlags));
85 int rc = waitpid(Process, &iStatus, fFlags & RTPROCWAIT_FLAGS_NOBLOCK ? WNOHANG : 0);
118 Assert(fFlags & RTPROCWAIT_FLAGS_NOBLOCK);
/vbox/src/VBox/Runtime/r3/win/
H A Ddirenum-win.cpp222 RTDECL(int) RTDirReadEx(PRTDIR pDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags) argument
245 AssertMsgReturn(RTPATH_F_IS_VALID(fFlags, 0), ("%#x\n", fFlags), VERR_INVALID_PARAMETER); local
361 pDirEntry->Info.Attr.u.Unix.fFlags = 0;
H A Dinit-win.cpp275 DECLHIDDEN(int) rtR3InitNativeFirst(uint32_t fFlags) argument
290 if (!(fFlags & RTR3INIT_FLAGS_UNOBTRUSIVE))
303 DECLHIDDEN(int) rtR3InitNativeFinal(uint32_t fFlags) argument
H A DldrNative-win.cpp49 int rtldrNativeLoad(const char *pszFilename, uintptr_t *phHandle, uint32_t fFlags, PRTERRINFO pErrInfo) argument
52 AssertReturn(fFlags == 0 || fFlags == RTLDRLOAD_FLAGS_NO_UNLOAD, VERR_INVALID_PARAMETER);
107 if ( (pModNative->fFlags & RTLDRLOAD_FLAGS_NO_UNLOAD)
117 int rtldrNativeLoadSystem(const char *pszFilename, const char *pszExt, uint32_t fFlags, PRTLDRMOD phLdrMod) argument
138 rc = RTLdrLoadEx(szPath, phLdrMod, fFlags, NULL);
/vbox/src/VBox/Debugger/
H A DDBGPlugInCommonELFTmpl.cpp.h49 * @param fFlags Flags.
71 int DBGDiggerCommonParseElfMod(PUVM pUVM, const char *pszModName, const char *pszFilename, uint32_t fFlags, argument
80 AssertReturn(!(fFlags & ~DBG_DIGGER_ELF_MASK), VERR_INVALID_PARAMETER);
81 AssertReturn((fFlags & (DBG_DIGGER_ELF_FUNNY_SHDRS | DBG_DIGGER_ELF_ADJUST_SYM_VALUE))
137 for (unsigned iSh = fFlags & DBG_DIGGER_ELF_FUNNY_SHDRS ? 1 : 0; iSh < pEhdr->e_shnum; iSh++)
161 uint32_t uMaxShIdx = fFlags & DBG_DIGGER_ELF_FUNNY_SHDRS ? 0 : pEhdr->e_shnum - 1;
170 if (fFlags & DBG_DIGGER_ELF_FUNNY_SHDRS)
201 int rc = RTDbgModCreate(&hMod, pszModName, 0 /*cbSeg*/, 0 /*fFlags*/);
206 if (fFlags & DBG_DIGGER_ELF_FUNNY_SHDRS)
244 rc = RTDbgModSegmentAdd(hMod, uRvaNext, cbSeg, szSeg, 0 /*fFlags*/,
[all...]
/vbox/src/VBox/Devices/Audio/
H A DDrvHostNullAudio.cpp226 static DECLCALLBACK(int) drvHostNullAudioConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags) argument
261 /* fFlags */
/vbox/src/VBox/Main/src-client/
H A DPCIRawDevImpl.cpp130 DECLCALLBACK(int) PCIRawDev::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle, uint32_t fFlags) argument
187 /* fFlags */
/vbox/src/VBox/Devices/Storage/
H A DDrvMediaISO.cpp218 static DECLCALLBACK(int) drvMediaISOConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags) argument
287 /* fFlags */
H A DDrvRawImage.cpp256 static DECLCALLBACK(int) drvRawImageConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags) argument
339 /* fFlags */
/vbox/src/VBox/Devices/USB/testcase/
H A DtstOhciRegisterAccess.cpp116 RTCCUINTREG const fFlags = ASMIntDisableFlags(); local
223 ASMSetFlags(fFlags);
285 RTCCUINTREG const fFlags = ASMIntDisableFlags(); local
353 ASMSetFlags(fFlags);
400 RTCCUINTREG const fFlags = ASMIntDisableFlags(); local
521 ASMSetFlags(fFlags);
/vbox/src/VBox/VMM/VMMAll/
H A DSELMAll.cpp161 * @param fFlags SELMTOFLAT_FLAGS_*
165 VMMDECL(int) SELMToFlatEx(PVMCPU pVCpu, DISSELREG SelReg, PCPUMCTXCORE pCtxCore, RTGCPTR Addr, uint32_t fFlags, PRTGCPTR ppvGC) argument
245 if (!(fFlags & SELMTOFLAT_FLAGS_NO_PL))
261 if (!(fFlags & SELMTOFLAT_FLAGS_NO_PL))
277 if (!(fFlags & SELMTOFLAT_FLAGS_NO_PL))
314 * @param fFlags SELMTOFLAT_FLAGS_*
322 uint32_t fFlags, PRTGCPTR ppvGC, uint32_t *pcb)
346 if ( !(fFlags & SELMTOFLAT_FLAGS_HYPER)
397 if (!(fFlags & SELMTOFLAT_FLAGS_NO_PL))
415 if (!(fFlags
321 SELMToFlatBySelEx(PVMCPU pVCpu, X86EFLAGS eflags, RTSEL Sel, RTGCPTR Addr, uint32_t fFlags, PRTGCPTR ppvGC, uint32_t *pcb) argument
[all...]
/vbox/src/VBox/NetworkServices/NetLib/
H A DVBoxNetUDP.cpp40 * @param fFlags Flags indicating what to match and some debug stuff.
46 void *VBoxNetUDPMatch(PINTNETBUF pBuf, unsigned uDstPort, PCRTMAC pDstMac, uint32_t fFlags, PVBOXNETUDPHDRS pHdrs, size_t *pcb) argument
90 if (fFlags & VBOXNETUDP_MATCH_PRINT_STDERR)
112 if ( ( !(fFlags & VBOXNETUDP_MATCH_UNICAST)
114 && ( !(fFlags & VBOXNETUDP_MATCH_BROADCAST)
158 if (fFlags & (VBOXNETUDP_MATCH_CHECKSUM | VBOXNETUDP_MATCH_REQUIRE_CHECKSUM))
162 if ( (fFlags & VBOXNETUDP_MATCH_REQUIRE_CHECKSUM)
/vbox/src/VBox/Runtime/common/asn1/
H A Dasn1-ut-core.cpp49 if (!(pAsn1Core->fFlags & RTASN1CORE_F_TAG_IMPLICIT))
54 pAsn1Core->fFlags |= RTASN1CORE_F_TAG_IMPLICIT;
64 if (!(pAsn1Core->fFlags & RTASN1CORE_F_TAG_IMPLICIT))
74 if (pThis->fFlags & RTASN1CORE_F_TAG_IMPLICIT)
76 pThis->fFlags &= ~RTASN1CORE_F_TAG_IMPLICIT;
83 RTDECL(int) RTAsn1Core_InitEx(PRTASN1CORE pAsn1Core, uint32_t uTag, uint8_t fClass, PCRTASN1COREVTABLE pOps, uint32_t fFlags) argument
91 pAsn1Core->fFlags = fFlags;
112 pThis->fFlags = pSrc->fFlags
261 RTAsn1Core_CheckSanity(PCRTASN1CORE pThis, uint32_t fFlags, PRTERRINFO pErrInfo, const char *pszErrorTag) argument
[all...]
H A Dasn1-ut-octetstring.cpp91 RTDECL(int) RTAsn1OctetString_RefreshContent(PRTASN1OCTETSTRING pThis, uint32_t fFlags, argument
97 int rc = RTAsn1EncodePrepare(pThis->pEncapsulated, fFlags, &cbEncoded, pErrInfo);
111 rc = RTAsn1EncodeWrite(pThis->pEncapsulated, fFlags, rtAsn1OctetStringEncodeWriter, &Ctx, pErrInfo);
127 RTDECL(bool) RTAsn1OctetString_AreContentBytesValid(PCRTASN1OCTETSTRING pThis, uint32_t fFlags) argument
133 int rc = RTAsn1EncodePrepare(pThis->pEncapsulated, fFlags, &cbEncoded, NULL);
150 rc = RTAsn1EncodeWrite(pThis->pEncapsulated, fFlags, rtAsn1OctetStringEncodeCompare, &Ctx, NULL);
164 static DECLCALLBACK(int) RTAsn1OctetString_EncodePrep(PRTASN1CORE pThisCore, uint32_t fFlags, PRTERRINFO pErrInfo) argument
175 int rc = RTAsn1EncodePrepare(pThis->pEncapsulated, fFlags, &cbEncoded, pErrInfo);
188 rc = RTAsn1EncodeWrite(pThis->pEncapsulated, fFlags, rtAsn1OctetStringEncodeCompare, &Ctx, NULL);
196 rc = RTAsn1EncodeRecalcHdrSize(&pThis->Asn1Core, fFlags, pErrInf
203 RTAsn1OctetString_EncodeWrite(PRTASN1CORE pThisCore, uint32_t fFlags, PFNRTASN1ENCODEWRITER pfnWriter, void *pvUser, PRTERRINFO pErrInfo) argument
406 RTAsn1OctetString_CheckSanity(PCRTASN1OCTETSTRING pThis, uint32_t fFlags, PRTERRINFO pErrInfo, const char *pszErrorTag) argument
[all...]
H A Dasn1-ut-time.cpp189 RTDECL(int) RTAsn1Time_CheckSanity(PCRTASN1TIME pThis, uint32_t fFlags, PRTERRINFO pErrInfo, const char *pszErrorTag) argument
250 RTDECL(int) RT_CONCAT(a_Api,_CheckSanity)(PCRTASN1TIME pThis, uint32_t fFlags, \
256 return RTAsn1Time_CheckSanity(pThis, fFlags, pErrInfo, pszErrorTag); \
/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgmodldr.cpp153 static DECLCALLBACK(int) rtDbgModLdr_EnumSymbols(PRTDBGMODINT pMod, uint32_t fFlags, RTLDRADDR BaseAddress, argument
157 return RTLdrEnumSymbols(pThis->hLdrMod, fFlags, NULL /*pvBits*/, BaseAddress, pfnCallback, pvUser);
/vbox/src/VBox/Runtime/common/ldr/
H A DldrFile.cpp249 * @param fFlags Reserved, MBZ.
253 RTDECL(int) RTLdrOpen(const char *pszFilename, uint32_t fFlags, RTLDRARCH enmArch, PRTLDRMOD phLdrMod) argument
255 LogFlow(("RTLdrOpen: pszFilename=%p:{%s} fFlags=%#x enmArch=%d phLdrMod=%p\n",
256 pszFilename, pszFilename, fFlags, enmArch, phLdrMod));
257 AssertMsgReturn(!(fFlags & ~RTLDR_O_VALID_MASK), ("%#x\n", fFlags), VERR_INVALID_PARAMETER);
267 rc = RTLdrOpenWithReader(pReader, fFlags, enmArch, phLdrMod, NULL);
287 * @param fFlags Reserved, MBZ.
292 RTDECL(int) RTLdrOpenkLdr(const char *pszFilename, uint32_t fFlags, RTLDRARCH enmArch, PRTLDRMOD phLdrMod) argument
295 LogFlow(("RTLdrOpenkLdr: pszFilename=%p:{%s} fFlags
[all...]
H A DldrMemory.cpp263 RTDECL(int) RTLdrOpenInMemory(const char *pszName, uint32_t fFlags, RTLDRARCH enmArch, size_t cbImage, argument
267 LogFlow(("RTLdrOpenInMemory: pszName=%p:{%s} fFlags=%#x enmArch=%d cbImage=%#zx pfnRead=%p pfnDtor=%p pvUser=%p phLdrMod=%p\n",
268 pszName, pszName, fFlags, enmArch, cbImage, pfnRead, pfnDtor, pvUser, phLdrMod));
278 AssertMsgReturnStmt(!(fFlags & ~RTLDR_O_VALID_MASK), ("%#x\n", fFlags),
307 rc = RTLdrOpenWithReader(pReader, fFlags, enmArch, phLdrMod, NULL);
/vbox/src/VBox/Runtime/common/misc/
H A Dhandletable.h125 uint32_t fFlags; member in struct:RTHANDLETABLEINT
H A Dreq.cpp84 pReq->fFlags = RTREQFLAGS_IPRT_STATUS;
141 pReq->fFlags = RTREQFLAGS_IPRT_STATUS;
254 unsigned fFlags = ((RTREQ volatile *)pReq)->fFlags; /* volatile paranoia */ local
255 if (!(fFlags & RTREQFLAGS_NO_WAIT))
267 if (!(fFlags & RTREQFLAGS_NO_WAIT))
345 LogFlow(("rtReqProcessOne: pReq=%p type=%d fFlags=%#x\n", pReq, pReq->enmType, pReq->fFlags));
439 if ((pReq->fFlags & (RTREQFLAGS_RETURN_MASK)) == RTREQFLAGS_VOID)
456 if (pReq->fFlags
[all...]
H A Dreqqueue.cpp199 RTDECL(int) RTReqQueueCallEx(RTREQQUEUE hQueue, PRTREQ *ppReq, RTMSINTERVAL cMillies, unsigned fFlags, PFNRT pfnFunction, unsigned cArgs, ...) argument
203 int rc = RTReqQueueCallV(hQueue, ppReq, cMillies, fFlags, pfnFunction, cArgs, va);
210 RTDECL(int) RTReqQueueCallV(RTREQQUEUE hQueue, PRTREQ *ppReq, RTMSINTERVAL cMillies, unsigned fFlags, PFNRT pfnFunction, unsigned cArgs, va_list Args) argument
212 LogFlow(("RTReqQueueCallV: cMillies=%d fFlags=%#x pfnFunction=%p cArgs=%d\n", cMillies, fFlags, pfnFunction, cArgs));
221 AssertReturn(!(fFlags & ~(RTREQFLAGS_RETURN_MASK | RTREQFLAGS_NO_WAIT)), VERR_INVALID_PARAMETER);
223 if (!(fFlags & RTREQFLAGS_NO_WAIT) || ppReq)
242 pReq->fFlags = fFlags;
258 if (!(fFlags
[all...]
/vbox/src/VBox/Additions/x11/vboxvideo/
H A Dsetmode.c118 uint16_t fFlags; local
131 fFlags = VBVA_SCREEN_F_ACTIVE;
132 fFlags |= (fConnected ? 0 : VBVA_SCREEN_F_DISABLED);
133 fFlags |= (!fEnabledAndVisible && pVBox->fHostHasScreenBlankingFlag ? VBVA_SCREEN_F_BLANK : 0);
135 pFrameBuffer->cWidth * pFrameBuffer->cBPP / 8, cWidth, cHeight, cBPP, fFlags);
154 uint16_t fFlags; local
180 fFlags = VBVA_SCREEN_F_ACTIVE;
181 fFlags |= (pVBox->pScreens[cDisplay].afConnected ? 0
185 fEnabled ? vboxBPP(pScrn) : 0, fFlags);
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DSysHlp.cpp51 * @param fFlags HGCM call flags, VBGLR0_HGCM_F_XXX.
53 int vbglLockLinear (void **ppvCtx, void *pv, uint32_t u32Size, bool fWriteAccess, uint32_t fFlags) argument
88 /** @todo (fFlags & VBGLR0_HGCMCALL_F_MODE_MASK) == VBGLR0_HGCMCALL_F_USER? UserMode: KernelMode */
112 if ((fFlags & VBGLR0_HGCMCALL_F_MODE_MASK) == VBGLR0_HGCMCALL_F_USER)

Completed in 77 milliseconds

1234567891011>>