Lines Matching refs:pszKey

101 static char* rtS3Host(const char* pszBucket, const char* pszKey, const char* pszBaseUrl)
107 else if (pszKey[0] == 0)
110 RTStrAPrintf(&pszUrl, "%s.%s/%s", pszBucket, pszBaseUrl, pszKey);
182 static char* rtS3Canonicalize(const char* pszAction, const char* pszBucket, const char* pszKey, char** papszHeadEnts, size_t cHeadEnts)
200 if (pszKey[0] != 0)
203 RTStrAPrintf(&pszRes, "%s%s", pszRes, pszKey);
210 static char* rtS3CreateSignature(PRTS3INTERNAL pS3Int, const char* pszAction, const char* pszBucket, const char* pszKey,
214 char* pszSig = rtS3Canonicalize(pszAction, pszBucket, pszKey, papszHeadEnts, cHeadEnts);
232 static char* rtS3CreateAuthHeader(PRTS3INTERNAL pS3Int, const char* pszAction, const char* pszBucket, const char* pszKey,
237 char *pszSigBase64Enc = rtS3CreateSignature(pS3Int, pszAction, pszBucket, pszKey, papszHeadEnts, cHeadEnts);
435 xmlChar *pszKey = xmlNodeListGetString(pDoc, pCurCont->xmlChildrenNode, 1);
436 pBucket->pszName = RTStrDup((const char*)pszKey);
437 xmlFree(pszKey);
441 xmlChar *pszKey = xmlNodeListGetString(pDoc, pCurCont->xmlChildrenNode, 1);
442 pBucket->pszCreationDate = RTStrDup((const char*)pszKey);
443 xmlFree(pszKey);
475 xmlChar *pszKey = xmlNodeListGetString(pDoc, pCurCont->xmlChildrenNode, 1);
476 pKey->pszName = RTStrDup((const char*)pszKey);
477 xmlFree(pszKey);
481 xmlChar *pszKey = xmlNodeListGetString(pDoc, pCurCont->xmlChildrenNode, 1);
482 pKey->pszLastModified = RTStrDup((const char*)pszKey);
483 xmlFree(pszKey);
487 xmlChar *pszKey = xmlNodeListGetString(pDoc, pCurCont->xmlChildrenNode, 1);
488 pKey->cbFile = RTStrToUInt64((const char*)pszKey);
489 xmlFree(pszKey);