Searched refs:pszName (Results 1 - 25 of 393) sorted by relevance

1234567891011>>

/vbox/src/VBox/Runtime/generic/
H A DRTProcIsRunningByName-generic.cpp35 RTR3DECL(bool) RTProcIsRunningByName(const char *pszName) argument
40 NOREF(pszName);
/vbox/src/VBox/Runtime/common/path/
H A DRTPathFilename.cpp48 const char *pszName = pszPath; local
64 pszName = psz + 1;
69 if (*pszName)
70 return (char *)(void *)pszName;
84 pszName = psz + 1;
89 if (*pszName)
90 return (char *)(void *)pszName;
H A DRTPathParseSimple.cpp57 const char *pszName = pszPath; local
67 pszName = psz + 1;
68 offRoot = pszName - psz;
74 pszName = psz + 1;
86 ssize_t offName = *pszName != '\0' ? pszName - pszPath : -1;
/vbox/src/VBox/Additions/solaris/SharedFolders/
H A Dvboxfs_mount.c48 static void Usage(char *pszName) argument
56 "\n", pszName);
82 char *pszName = NULL; local
92 pszName = strrchr(argv[0], '/');
93 pszName = pszName ? pszName + 1 : argv[0];
94 snprintf(achType, sizeof(achType), "%s_%s", DEVICE_NAME, pszName);
134 fprintf(stderr, "%s: invalid argument: %s\n", pszName, optarg);
142 Usage(pszName);
[all...]
/vbox/include/VBox/vmm/
H A Dcfgm.h93 VMMR3DECL(int) CFGMR3InsertSubTree(PCFGMNODE pNode, const char *pszName, PCFGMNODE pSubTree, PCFGMNODE *ppChild);
94 VMMR3DECL(int) CFGMR3InsertNode(PCFGMNODE pNode, const char *pszName, PCFGMNODE *ppChild);
99 VMMR3DECL(int) CFGMR3InsertInteger(PCFGMNODE pNode, const char *pszName, uint64_t u64Integer);
100 VMMR3DECL(int) CFGMR3InsertString(PCFGMNODE pNode, const char *pszName, const char *pszString);
101 VMMR3DECL(int) CFGMR3InsertStringN(PCFGMNODE pNode, const char *pszName, const char *pszString, size_t cchString);
102 VMMR3DECL(int) CFGMR3InsertStringF(PCFGMNODE pNode, const char *pszName, const char *pszFormat, ...);
103 VMMR3DECL(int) CFGMR3InsertStringFV(PCFGMNODE pNode, const char *pszName, const char *pszFormat, va_list va);
104 VMMR3DECL(int) CFGMR3InsertStringW(PCFGMNODE pNode, const char *pszName, PCRTUTF16 pwszValue);
105 VMMR3DECL(int) CFGMR3InsertBytes(PCFGMNODE pNode, const char *pszName, const void *pvBytes, size_t cbBytes);
107 VMMR3DECL(int) CFGMR3RemoveValue(PCFGMNODE pNode, const char *pszName);
[all...]
H A Dpdmnvram.h60 * @param pszName The variable name buffer.
63 * return it holds the strlen() value for @a pszName.
70 PRTUUID pVendorUuid, char *pszName, uint32_t *pcchName,
89 * @param pszName The variable name buffer.
92 * return it holds the strlen() value for @a pszName.
99 PCRTUUID pVendorUuid, const char *pszName, size_t cchName,
/vbox/src/VBox/Additions/WINNT/VBoxTray/
H A DVBoxSharedFolders.cpp58 char *pszName = NULL; local
59 rc = VbglR3SharedFolderGetName(u32ClientId, paMappings[i].u32Root, &pszName);
61 && *pszName)
63 LogFlowFunc(("Connecting share %u (%s) ...\n", i+1, pszName));
66 if (RTStrAPrintf(&pszShareName, "\\\\vboxsrv\\%s", pszName) >= 0)
87 LogRel(("Shared folder \"%s\" was mounted to drive \"%s\"\n", pszName, szCurDrive));
92 LogRel(("Mounting \"%s\" to \"%s\" resulted in dwErr = %ld\n", pszName, szCurDrive, dwErr));
105 pszName, szCurDrive, dwErr));
113 LogRel(("No free driver letter found to assign shared folder \"%s\", aborting\n", pszName));
121 RTStrFree(pszName);
162 char *pszName = NULL; local
[all...]
/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServicePropCache.cpp34 PVBOXSERVICEVEPROPCACHEENTRY vboxServicePropCacheFindInternal(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName, uint32_t uFlags);
35 PVBOXSERVICEVEPROPCACHEENTRY vboxServicePropCacheInsertEntryInternal(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName);
39 PVBOXSERVICEVEPROPCACHEENTRY vboxServicePropCacheFindInternal(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName, uint32_t uFlags) argument
42 AssertPtrReturn(pszName, NULL);
54 if (strcmp(pNodeIt->pszName, pszName) == 0)
67 PVBOXSERVICEVEPROPCACHEENTRY vboxServicePropCacheInsertEntryInternal(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName) argument
70 AssertPtrReturn(pszName, NULL);
75 pNode->pszName = RTStrDup(pszName);
97 vboxServicePropCacheWritePropF(uint32_t u32ClientId, const char *pszName, uint32_t fFlags, const char *pszValueFormat, ...) argument
173 VBoxServicePropCacheUpdateEntry(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName, uint32_t fFlags, const char *pszValueReset) argument
216 VBoxServicePropCacheUpdate(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName, const char *pszValueFormat, ...) argument
[all...]
H A DVBoxServicePropCache.h41 int VBoxServicePropCacheUpdateEntry(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName, uint32_t fFlags, const char *pszValueReset);
42 int VBoxServicePropCacheUpdate(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName, const char *pszValueFormat, ...);
/vbox/src/VBox/Storage/testcase/
H A DBuiltinTests.h26 const char *pszName; member in struct:TSTVDIOTESTENTRY
H A DtstVD-2.cpp58 static int tstQuerySize(void *pvUser, const char *pszName, size_t *pcbValue) argument
60 const char *pszValue = tstGetValueByKey(pszName);
67 static int tstQuery(void *pvUser, const char *pszName, char *pszValue, size_t cchValue) argument
69 const char *pszTmp = tstGetValueByKey(pszName);
198 char *pszLocation, *pszName; local
210 rc = aVDInfo[i].pfnComposeName(pVDIfs, &pszName);
212 if (pszName)
214 RTMemFree(pszName);
/vbox/src/VBox/Runtime/include/internal/
H A Dfs.h37 RTFMODE rtFsModeFromDos(RTFMODE fMode, const char *pszName, size_t cbName);
38 RTFMODE rtFsModeFromUnix(RTFMODE fMode, const char *pszName, size_t cbName);
39 RTFMODE rtFsModeNormalize(RTFMODE fMode, const char *pszName, size_t cbName);
44 void rtFsConvertStatToObjInfo(PRTFSOBJINFO pObjInfo, const struct stat *pStat, const char *pszName, unsigned cbName);
/vbox/src/VBox/Runtime/r3/
H A Dfs.cpp48 * @param pszName The filename which this applies to (exe check).
51 RTFMODE rtFsModeFromDos(RTFMODE fMode, const char *pszName, size_t cbName) argument
63 if (!cbName && pszName)
64 cbName = strlen(pszName);
65 if (cbName >= 4 && pszName[cbName - 4] == '.')
68 const char *pszExt = &pszName[cbName - 3];
100 * @param pszName The filename which this applies to (hidden check).
103 RTFMODE rtFsModeFromUnix(RTFMODE fMode, const char *pszName, size_t cbName) argument
115 if (!(fMode & RTFS_DOS_HIDDEN) && pszName)
117 pszName
137 rtFsModeNormalize(RTFMODE fMode, const char *pszName, size_t cbName) argument
[all...]
/vbox/src/VBox/Additions/x11/vboxvideo/
H A Dhelpers.c58 int vbvxGetIntegerPropery(ScrnInfoPtr pScrn, char *pszName, size_t *pcData, int32_t **ppaData) argument
66 atom = MakeAtom(pszName, strlen(pszName), TRUE);
80 void vbvxSetIntegerPropery(ScrnInfoPtr pScrn, char *pszName, size_t cData, int32_t *paData, Bool fSendEvent) argument
85 property_name = MakeAtom(pszName, strlen(pszName), TRUE);
86 VBVXASSERT(property_name != BAD_RESOURCE, ("Failed to set atom \"%s\"\n", pszName));
/vbox/src/VBox/Main/src-client/
H A DBusAssignmentManager.cpp36 const char* pszName; member in struct:DeviceAssignmentRule
224 PCIDeviceRecord(const char* pszName, PCIBusAddress aHostAddress) argument
226 RTStrCopy(this->szDevName, sizeof(szDevName), pszName);
230 PCIDeviceRecord(const char* pszName) argument
232 RTStrCopy(this->szDevName, sizeof(szDevName), pszName);
264 HRESULT record(const char* pszName, PCIBusAddress& GuestAddress, PCIBusAddress HostAddress);
265 HRESULT autoAssign(const char* pszName, PCIBusAddress& Address);
269 const char* findAlias(const char* pszName);
270 void addMatchingRules(const char* pszName, PCIRulesList& aList);
280 HRESULT BusAssignmentManager::State::record(const char* pszName, PCIBusAddres argument
315 addMatchingRules(const char* pszName, PCIRulesList& aList) argument
361 autoAssign(const char* pszName, PCIBusAddress& Address) argument
448 InsertConfigInteger(PCFGMNODE pCfg, const char* pszName, uint64_t u64) argument
[all...]
/vbox/src/VBox/VMM/VMMR3/
H A DDBGFInfo.cpp216 * @param pszName The identifier of the info.
221 static int dbgfR3InfoRegister(PUVM pUVM, const char *pszName, const char *pszDesc, uint32_t fFlags, PDBGFINFO *ppInfo) argument
226 AssertPtrReturn(pszName, VERR_INVALID_POINTER);
227 AssertReturn(*pszName, VERR_INVALID_PARAMETER);
235 size_t cchName = strlen(pszName) + 1;
243 memcpy(pInfo->szName, pszName, cchName);
259 if (strcmp(pszName, pCur->szName) < 0)
283 * @param pszName The identifier of the info.
288 VMMR3_INT_DECL(int) DBGFR3InfoRegisterDevice(PVM pVM, const char *pszName, const char *pszDesc, argument
291 LogFlow(("DBGFR3InfoRegisterDevice: pszName
327 DBGFR3InfoRegisterDriver(PVM pVM, const char *pszName, const char *pszDesc, PFNDBGFHANDLERDRV pfnHandler, PPDMDRVINS pDrvIns) argument
364 DBGFR3InfoRegisterInternal(PVM pVM, const char *pszName, const char *pszDesc, PFNDBGFHANDLERINT pfnHandler) argument
380 DBGFR3InfoRegisterInternalEx(PVM pVM, const char *pszName, const char *pszDesc, PFNDBGFHANDLERINT pfnHandler, uint32_t fFlags) argument
417 DBGFR3InfoRegisterExternal(PUVM pUVM, const char *pszName, const char *pszDesc, PFNDBGFHANDLEREXT pfnHandler, void *pvUser) argument
454 DBGFR3InfoDeregisterDevice(PVM pVM, PPDMDEVINS pDevIns, const char *pszName) argument
526 DBGFR3InfoDeregisterDriver(PVM pVM, PPDMDRVINS pDrvIns, const char *pszName) argument
599 dbgfR3InfoDeregister(PUVM pUVM, const char *pszName, DBGFINFOTYPE enmType) argument
643 DBGFR3InfoDeregisterInternal(PVM pVM, const char *pszName) argument
657 DBGFR3InfoDeregisterExternal(PUVM pUVM, const char *pszName) argument
676 dbgfR3Info(PUVM pUVM, VMCPUID idCpu, const char *pszName, const char *pszArgs, PCDBGFINFOHLP pHlp) argument
771 DBGFR3Info(PUVM pUVM, const char *pszName, const char *pszArgs, PCDBGFINFOHLP pHlp) argument
789 DBGFR3InfoEx(PUVM pUVM, VMCPUID idCpu, const char *pszName, const char *pszArgs, PCDBGFINFOHLP pHlp) argument
807 DBGFR3InfoLogRel(PUVM pUVM, const char *pszName, const char *pszArgs) argument
821 DBGFR3InfoStdErr(PUVM pUVM, const char *pszName, const char *pszArgs) argument
[all...]
H A DCFGM.cpp81 static int cfgmR3ResolveLeaf(PCFGMNODE pNode, const char *pszName, PCFGMLEAF *ppLeaf);
82 static int cfgmR3InsertLeaf(PCFGMNODE pNode, const char *pszName, PCFGMLEAF *ppLeaf);
407 * @param pszName Where to store the node name.
408 * @param cchName Size of the buffer pointed to by pszName (with terminator).
410 VMMR3DECL(int) CFGMR3GetName(PCFGMNODE pCur, char *pszName, size_t cchName) argument
418 memcpy(pszName, pCur->szName, pCur->cchName + 1);
518 * @param pszName Where to store the value name.
519 * @param cchName Size of the buffer pointed to by pszName (with terminator).
521 VMMR3DECL(int) CFGMR3GetValueName(PCFGMLEAF pCur, char *pszName, size_t cchName) argument
529 memcpy(pszName, pCu
620 CFGMR3Exists(PCFGMNODE pNode, const char *pszName) argument
636 CFGMR3QueryType(PCFGMNODE pNode, const char *pszName, PCFGMVALUETYPE penmType) argument
658 CFGMR3QuerySize(PCFGMNODE pNode, const char *pszName, size_t *pcb) argument
696 CFGMR3QueryInteger(PCFGMNODE pNode, const char *pszName, uint64_t *pu64) argument
720 CFGMR3QueryIntegerDef(PCFGMNODE pNode, const char *pszName, uint64_t *pu64, uint64_t u64Def) argument
752 CFGMR3QueryString(PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString) argument
786 CFGMR3QueryStringDef(PCFGMNODE pNode, const char *pszName, char *pszString, size_t cchString, const char *pszDef) argument
834 CFGMR3QueryBytes(PCFGMNODE pNode, const char *pszName, void *pvData, size_t cbData) argument
1267 cfgmR3ResolveLeaf(PCFGMNODE pNode, const char *pszName, PCFGMLEAF *ppLeaf) argument
1457 CFGMR3InsertSubTree(PCFGMNODE pNode, const char *pszName, PCFGMNODE pSubTree, PCFGMNODE *ppChild) argument
1662 CFGMR3InsertNode(PCFGMNODE pNode, const char *pszName, PCFGMNODE *ppChild) argument
1828 char *pszName; local
1863 cfgmR3InsertLeaf(PCFGMNODE pNode, const char *pszName, PCFGMLEAF *ppLeaf) argument
2062 CFGMR3InsertInteger(PCFGMNODE pNode, const char *pszName, uint64_t u64Integer) argument
2086 CFGMR3InsertStringN(PCFGMNODE pNode, const char *pszName, const char *pszString, size_t cchString) argument
2135 CFGMR3InsertString(PCFGMNODE pNode, const char *pszName, const char *pszString) argument
2151 CFGMR3InsertStringFV(PCFGMNODE pNode, const char *pszName, const char *pszFormat, va_list va) argument
2200 CFGMR3InsertStringF(PCFGMNODE pNode, const char *pszName, const char *pszFormat, ...) argument
2218 CFGMR3InsertStringW(PCFGMNODE pNode, const char *pszName, PCRTUTF16 pwszValue) argument
2240 CFGMR3InsertBytes(PCFGMNODE pNode, const char *pszName, const void *pvBytes, size_t cbBytes) argument
2322 CFGMR3RemoveValue(PCFGMNODE pNode, const char *pszName) argument
2346 CFGMR3QueryU64(PCFGMNODE pNode, const char *pszName, uint64_t *pu64) argument
2361 CFGMR3QueryU64Def(PCFGMNODE pNode, const char *pszName, uint64_t *pu64, uint64_t u64Def) argument
2375 CFGMR3QueryS64(PCFGMNODE pNode, const char *pszName, int64_t *pi64) argument
2394 CFGMR3QueryS64Def(PCFGMNODE pNode, const char *pszName, int64_t *pi64, int64_t i64Def) argument
2411 CFGMR3QueryU32(PCFGMNODE pNode, const char *pszName, uint32_t *pu32) argument
2435 CFGMR3QueryU32Def(PCFGMNODE pNode, const char *pszName, uint32_t *pu32, uint32_t u32Def) argument
2460 CFGMR3QueryS32(PCFGMNODE pNode, const char *pszName, int32_t *pi32) argument
2485 CFGMR3QueryS32Def(PCFGMNODE pNode, const char *pszName, int32_t *pi32, int32_t i32Def) argument
2511 CFGMR3QueryU16(PCFGMNODE pNode, const char *pszName, uint16_t *pu16) argument
2535 CFGMR3QueryU16Def(PCFGMNODE pNode, const char *pszName, uint16_t *pu16, uint16_t u16Def) argument
2560 CFGMR3QueryS16(PCFGMNODE pNode, const char *pszName, int16_t *pi16) argument
2585 CFGMR3QueryS16Def(PCFGMNODE pNode, const char *pszName, int16_t *pi16, int16_t i16Def) argument
2611 CFGMR3QueryU8(PCFGMNODE pNode, const char *pszName, uint8_t *pu8) argument
2635 CFGMR3QueryU8Def(PCFGMNODE pNode, const char *pszName, uint8_t *pu8, uint8_t u8Def) argument
2660 CFGMR3QueryS8(PCFGMNODE pNode, const char *pszName, int8_t *pi8) argument
2685 CFGMR3QueryS8Def(PCFGMNODE pNode, const char *pszName, int8_t *pi8, int8_t i8Def) argument
2712 CFGMR3QueryBool(PCFGMNODE pNode, const char *pszName, bool *pf) argument
2732 CFGMR3QueryBoolDef(PCFGMNODE pNode, const char *pszName, bool *pf, bool fDef) argument
2749 CFGMR3QueryPort(PCFGMNODE pNode, const char *pszName, PRTIOPORT pPort) argument
2765 CFGMR3QueryPortDef(PCFGMNODE pNode, const char *pszName, PRTIOPORT pPort, RTIOPORT PortDef) argument
2780 CFGMR3QueryUInt(PCFGMNODE pNode, const char *pszName, unsigned int *pu) argument
2796 CFGMR3QueryUIntDef(PCFGMNODE pNode, const char *pszName, unsigned int *pu, unsigned int uDef) argument
2811 CFGMR3QuerySInt(PCFGMNODE pNode, const char *pszName, signed int *pi) argument
2827 CFGMR3QuerySIntDef(PCFGMNODE pNode, const char *pszName, signed int *pi, signed int iDef) argument
2842 CFGMR3QueryPtr(PCFGMNODE pNode, const char *pszName, void **ppv) argument
2867 CFGMR3QueryPtrDef(PCFGMNODE pNode, const char *pszName, void **ppv, void *pvDef) argument
2893 CFGMR3QueryGCPtr(PCFGMNODE pNode, const char *pszName, PRTGCPTR pGCPtr) argument
2918 CFGMR3QueryGCPtrDef(PCFGMNODE pNode, const char *pszName, PRTGCPTR pGCPtr, RTGCPTR GCPtrDef) argument
2944 CFGMR3QueryGCPtrU(PCFGMNODE pNode, const char *pszName, PRTGCUINTPTR pGCPtr) argument
2969 CFGMR3QueryGCPtrUDef(PCFGMNODE pNode, const char *pszName, PRTGCUINTPTR pGCPtr, RTGCUINTPTR GCPtrDef) argument
2995 CFGMR3QueryGCPtrS(PCFGMNODE pNode, const char *pszName, PRTGCINTPTR pGCPtr) argument
3020 CFGMR3QueryGCPtrSDef(PCFGMNODE pNode, const char *pszName, PRTGCINTPTR pGCPtr, RTGCINTPTR GCPtrDef) argument
3049 CFGMR3QueryStringAlloc(PCFGMNODE pNode, const char *pszName, char **ppszString) argument
3086 CFGMR3QueryStringAllocDef(PCFGMNODE pNode, const char *pszName, char **ppszString, const char *pszDef) argument
[all...]
/vbox/src/VBox/Runtime/r3/win/
H A Ddirenum-win.cpp130 RTStrFree(pDir->pszName);
131 pDir->pszName = NULL;
169 RTStrFree(pDir->pszName);
170 pDir->pszName = NULL;
185 if (!pDir->pszName)
187 int rc = RTUtf16ToUtf8((PCRTUTF16)pDir->Data.cFileName, &pDir->pszName);
190 pDir->pszName = NULL;
193 pDir->cchName = strlen(pDir->pszName);
199 const char *pszName = pDir->pszName; local
292 const char *pszName = pDir->pszName; local
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dbcrypt.h54 LPWSTR pszName; member in struct:_BCRYPT_ALGORITHM_IDENTIFIER
/vbox/src/VBox/Runtime/r3/linux/
H A DRTProcIsRunningByName-linux.cpp42 RTR3DECL(bool) RTProcIsRunningByName(const char *pszName) argument
47 if (!pszName)
50 bool const fWithPath = RTPathHavePath(pszName);
102 if (RTStrCmp(pszProcName, pszName) == 0)
/vbox/src/VBox/Main/src-server/linux/
H A DNetIf-linux.cpp47 * @param pszName The buffer of IFNAMSIZ+1 length where to put the name.
49 static int getDefaultIfaceName(char *pszName) argument
73 strncpy(pszName, szIfName, 16);
74 pszName[16] = 0;
83 static uint32_t getInterfaceSpeed(const char *pszName) argument
92 RTStrPrintf(szBuf, sizeof(szBuf), "/sys/class/net/%s/speed", pszName);
104 RTStrPrintf(szBuf, sizeof(szBuf), "/sys/class/net/%s/carrier", pszName);
117 int rc = NetIfAdpCtlOut(pszName, "speed", szBuf, sizeof(szBuf));
124 static int getInterfaceInfo(int iSocket, const char *pszName, PNETIFINFO pInfo) argument
131 RTStrCopy(Req.ifr_name, sizeof(Req.ifr_name), pszName);
236 char *pszName = buf+iFirstNonWS; local
[all...]
/vbox/src/VBox/Runtime/common/zip/
H A Dunzipcmd.cpp85 * @param pszName The name.
88 typedef RTEXITCODE (*PFNDOWITHMEMBER)(PRTZIPUNZIPCMDOPS pOpts, RTVFSOBJ hVfsObj, const char *pszName, RTEXITCODE rcExit, PRTFOFF pcBytes);
95 const char *pszName, RTEXITCODE rcExit, PRTFOFF pcBytes)
103 return RTMsgErrorExit(RTEXITCODE_FAILURE, "RTVfsObjQueryInfo returned %Rrc on '%s'", rc, pszName);
107 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Cannot explode time on '%s'", pszName);
113 pszName);
173 const char *pszName, RTEXITCODE rcExit, PRTFOFF pcBytes)
176 RTPrintf("%s\n", pszName);
184 return RTMsgErrorExit(RTEXITCODE_FAILURE, "RTVfsObjQueryInfo returned %Rrc on '%s'", rc, pszName);
189 rc = RTPathJoin(szDst, sizeof(szDst), pOpts->pszDirectory ? pOpts->pszDirectory : ".", pszName);
94 rtZipUnzipCmdListCallback(PRTZIPUNZIPCMDOPS pOpts, RTVFSOBJ hVfsObj, const char *pszName, RTEXITCODE rcExit, PRTFOFF pcBytes) argument
172 rtZipUnzipCmdExtractCallback(PRTZIPUNZIPCMDOPS pOpts, RTVFSOBJ hVfsObj, const char *pszName, RTEXITCODE rcExit, PRTFOFF pcBytes) argument
231 rtZipUnzipCmdIsNameInArray(const char *pszName, const char * const *papszNames, uint32_t *piName) argument
323 char *pszName; local
[all...]
H A Dtarcmd.cpp148 * @param pszName The name.
151 typedef RTEXITCODE (*PFNDOWITHMEMBER)(PRTZIPTARCMDOPS pOpts, RTVFSOBJ hVfsObj, const char *pszName, RTEXITCODE rcExit);
155 * Checks if @a pszName is a member of @a papszNames, optionally returning the
159 * @param pszName The name to find.
163 static bool rtZipTarCmdIsNameInArray(const char *pszName, const char * const *papszNames, uint32_t *piName) argument
166 if (!strcmp(papszNames[iName], pszName))
322 char *pszName; local
324 int rc = RTVfsFsStrmNext(hVfsFssIn, &pszName, NULL, &hVfsObj);
337 || rtZipTarCmdIsNameInArray(pszName, pOpts->papszFiles, &iFile) )
342 rcExit = pfnCallback(pOpts, hVfsObj, pszName, rcExi
379 rtZipTarHasEscapeSequence(const char *pszName) argument
411 rtZipTarQueryExtractOwner(PRTZIPTARCMDOPS pOpts, PCRTFSOBJINFO pOwner, const char *pszName, RTEXITCODE rcExit, PRTUID pUid) argument
442 rtZipTarQueryExtractGroup(PRTZIPTARCMDOPS pOpts, PCRTFSOBJINFO pGroup, const char *pszName, RTEXITCODE rcExit, PRTGID pGid) argument
552 rtZipTarCmdExtractCallback(PRTZIPTARCMDOPS pOpts, RTVFSOBJ hVfsObj, const char *pszName, RTEXITCODE rcExit) argument
695 rtZipTarCmdListCallback(PRTZIPTARCMDOPS pOpts, RTVFSOBJ hVfsObj, const char *pszName, RTEXITCODE rcExit) argument
[all...]
/vbox/src/VBox/Devices/Audio/
H A DAudioMixer.cpp43 int audioMixerAddSink(PAUDIOMIXER pMixer, const char *pszName, AUDMIXSINKDIR enmDir, PAUDMIXSINK *ppSink) argument
46 AssertPtrReturn(pszName, VERR_INVALID_POINTER);
54 pSink->pszName = RTStrDup(pszName);
55 if (!pSink->pszName)
113 pSink->pszName, pMixStream, pSink->cStreams));
151 pSink->pszName, pMixStream, pSink->cStreams));
169 int audioMixerCreate(const char *pszName, uint32_t uFlags, PAUDIOMIXER *ppMixer) argument
171 AssertPtrReturn(pszName, VERR_INVALID_POINTER);
180 pMixer->pszName
[all...]
H A DDrvAudio.cpp75 static int drvAudioAllocHstIn(PDRVAUDIO pThis, const char *pszName, PPDMAUDIOSTREAMCFG pCfg, PDMAUDIORECSOURCE enmRecSource, PPDMAUDIOHSTSTRMIN *ppHstStrmIn);
78 int drvAudioAddHstOut(PDRVAUDIO pThis, const char *pszName, PPDMAUDIOSTREAMCFG pCfg, PPDMAUDIOHSTSTRMOUT *ppHstStrmOut) argument
81 AssertPtrReturn(pszName, VERR_INVALID_POINTER);
90 rc = drvAudioAllocHstOut(pThis, pszName, pCfg, &pHstStrmOut);
100 rc = drvAudioAllocHstOut(pThis, pszName, pCfg, &pHstStrmOut);
378 LogFlowFunc(("%s\n", pHstStrmOut->MixBuf.pszName));
399 LogFlowFunc(("[%s] Still is being used, rc=%Rrc\n", pHstStrmOut->MixBuf.pszName, rc));
462 static int drvAudioHstInAdd(PDRVAUDIO pThis, const char *pszName, PPDMAUDIOSTREAMCFG pCfg, PDMAUDIORECSOURCE enmRecSource, argument
470 int rc = drvAudioAllocHstIn(pThis, pszName, pCfg, enmRecSource, &pHstStrmIn);
479 const char *pszName, PPDMAUDIOSTREAMCF
478 drvAudioGstOutInit(PPDMAUDIOGSTSTRMOUT pGstStrmOut, PPDMAUDIOHSTSTRMOUT pHostStrmOut, const char *pszName, PPDMAUDIOSTREAMCFG pCfg) argument
516 drvAudioAllocHstOut(PDRVAUDIO pThis, const char *pszName, PPDMAUDIOSTREAMCFG pCfg, PPDMAUDIOHSTSTRMOUT *ppHstStrmOut) argument
596 drvAudioCreateStreamPairOut(PDRVAUDIO pThis, const char *pszName, PPDMAUDIOSTREAMCFG pCfg, PPDMAUDIOGSTSTRMOUT *ppGstStrmOut) argument
661 drvAudioCreateStreamPairIn(PDRVAUDIO pThis, const char *pszName, PDMAUDIORECSOURCE enmRecSource, PPDMAUDIOSTREAMCFG pCfg, PPDMAUDIOGSTSTRMIN *ppGstStrmIn) argument
730 drvAudioGstInInit(PPDMAUDIOGSTSTRMIN pGstStrmIn, PPDMAUDIOHSTSTRMIN pHstStrmIn, const char *pszName, PPDMAUDIOSTREAMCFG pCfg) argument
771 drvAudioAllocHstIn(PDRVAUDIO pThis, const char *pszName, PPDMAUDIOSTREAMCFG pCfg, PDMAUDIORECSOURCE enmRecSource, PPDMAUDIOHSTSTRMIN *ppHstStrmIn) argument
1559 drvAudioOpenIn(PPDMIAUDIOCONNECTOR pInterface, const char *pszName, PDMAUDIORECSOURCE enmRecSource, PPDMAUDIOSTREAMCFG pCfg, PPDMAUDIOGSTSTRMIN *ppGstStrmIn) argument
1625 drvAudioOpenOut(PPDMIAUDIOCONNECTOR pInterface, const char *pszName, PPDMAUDIOSTREAMCFG pCfg, PPDMAUDIOGSTSTRMOUT *ppGstStrmOut) argument
[all...]

Completed in 97 milliseconds

1234567891011>>