Searched refs:pKeys (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Runtime/testcase/
H A DtstRTS3.cpp119 PCRTS3KEYENTRY pKeys = NULL; local
122 int rc = RTS3GetBucketKeys(hS3, pszBucketName, &pKeys);
125 if (pKeys)
127 PCRTS3KEYENTRY pTmpKeys = pKeys;
128 while (pKeys)
130 RTTestIPrintf(RTTESTLVL_ALWAYS, " > %s, %s, %lu\n", pKeys->pszName, pKeys->pszLastModified, pKeys->cbFile);
131 pKeys = pKeys
[all...]
/vbox/include/iprt/
H A Ds3.h223 * @param pKeys Pointer to the first key entry.
225 RTR3DECL(int) RTS3KeysDestroy(PCRTS3KEYENTRY pKeys); variable
/vbox/src/VBox/Main/src-server/
H A DVFSExplorerImpl.cpp441 PCRTS3KEYENTRY pKeys = NULL; local
442 vrc = RTS3GetBucketKeys(hS3, m->strBucket.c_str(), &pKeys);
446 PCRTS3KEYENTRY pTmpKeys = pKeys;
447 while (pKeys)
449 Utf8Str name(pKeys->pszName);
451 fileList.push_back(VFSExplorer::Data::DirEntry(pKeys->pszName, VFSFileType_File, pKeys->cbFile,
453 pKeys = pKeys->pNext;
/vbox/src/VBox/Runtime/common/misc/
H A Ds3.cpp820 RTR3DECL(int) RTS3KeysDestroy(PCRTS3KEYENTRY pKeys) argument
822 if (!pKeys)
825 while (pKeys)
827 PCRTS3KEYENTRY pTemp = pKeys;
828 RTStrFree((char*)pKeys->pszName);
829 RTStrFree((char*)pKeys->pszLastModified);
830 pKeys = pKeys->pNext;

Completed in 49 milliseconds