Lines Matching refs:StrPtr
634 CHAR16 *StrPtr; in ProcessStorage() local
653 StrPtr = StrStr (ConfigResp, L"PATH"); in ProcessStorage()
654 ASSERT (StrPtr != NULL); in ProcessStorage()
655 StrPtr = StrStr (StrPtr, L"&"); in ProcessStorage()
656 StrPtr += 1; in ProcessStorage()
657 BufferSize = StrSize (StrPtr); in ProcessStorage()
663 StrCpyS (*ResultsData, *ResultsDataSize / sizeof (CHAR16), StrPtr); in ProcessStorage()
1311 CHAR16 *StrPtr; in ConfigRespToStorage() local
1331 StrPtr = StrStr (ConfigResp, L"PATH"); in ConfigRespToStorage()
1332 if (StrPtr == NULL) { in ConfigRespToStorage()
1335 StrPtr = StrStr (ConfigResp, L"&"); in ConfigRespToStorage()
1336 while (StrPtr != NULL) { in ConfigRespToStorage()
1340 StrPtr = StrPtr + 1; in ConfigRespToStorage()
1341 Name = StrPtr; in ConfigRespToStorage()
1342 StrPtr = StrStr (StrPtr, L"="); in ConfigRespToStorage()
1343 if (StrPtr == NULL) { in ConfigRespToStorage()
1346 *StrPtr = 0; in ConfigRespToStorage()
1351 StrPtr = StrPtr + 1; in ConfigRespToStorage()
1352 Value = StrPtr; in ConfigRespToStorage()
1353 StrPtr = StrStr (StrPtr, L"&"); in ConfigRespToStorage()
1354 if (StrPtr != NULL) { in ConfigRespToStorage()
1355 *StrPtr = 0; in ConfigRespToStorage()
5390 CHAR16 *StrPtr; in LoadStorage() local
5469 StrPtr = StrStr (Result, L"&GUID="); in LoadStorage()
5470 if (StrPtr != NULL) { in LoadStorage()
5471 *StrPtr = L'\0'; in LoadStorage()