Searched defs:pKeys (Results 1 - 4 of 4) sorted by relevance
/vbox/include/iprt/ |
H A D | s3.h | 223 * @param pKeys Pointer to the first key entry. 225 RTR3DECL(int) RTS3KeysDestroy(PCRTS3KEYENTRY pKeys); variable
|
/vbox/src/VBox/Runtime/testcase/ |
H A D | tstRTS3.cpp | 119 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/src/VBox/Main/src-server/ |
H A D | VFSExplorerImpl.cpp | 441 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 D | s3.cpp | 820 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 48 milliseconds