HomeSort by relevance Sort by last modified time
    Searched refs:ppPaths (Results 1 - 2 of 2) sorted by null

  /external/python/cpython2/PC/
getpathp.c 238 TCHAR **ppPaths = NULL;
269 ppPaths = malloc( sizeof(TCHAR *) * numKeys );
270 if (ppPaths==NULL) goto done;
271 memset(ppPaths, 0, sizeof(TCHAR *) * numKeys);
291 ppPaths[index] = malloc(reqdSize);
292 if (ppPaths[index]) {
294 (LPBYTE)ppPaths[index],
316 if (ppPaths[index]) {
317 Py_ssize_t len = _tcslen(ppPaths[index]);
318 _tcsncpy(szCur, ppPaths[index], len)
    [all...]
  /external/python/cpython3/PC/
getpathp.c 309 WCHAR **ppPaths = NULL;
341 ppPaths = PyMem_RawMalloc( sizeof(WCHAR *) * numKeys );
342 if (ppPaths==NULL) goto done;
343 memset(ppPaths, 0, sizeof(WCHAR *) * numKeys);
363 ppPaths[index] = PyMem_RawMalloc(reqdSize);
364 if (ppPaths[index]) {
366 (LPBYTE)ppPaths[index],
387 if (ppPaths[index]) {
388 Py_ssize_t len = wcslen(ppPaths[index]);
389 wcsncpy(szCur, ppPaths[index], len)
    [all...]

Completed in 68 milliseconds