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

  /ndk/sources/host-tools/make-3.81/w32/compat/
dirent.c 31 DIR* pDir;
50 pDir = (DIR *) malloc(sizeof (DIR));
52 if (!pDir)
59 strcpy(pDir->dir_pDirectoryName, pDirName);
62 pEndDirName = &pDir->dir_pDirectoryName[nBufferLen - 1];
77 pDir->dir_nNumFiles = 0;
78 pDir->dir_hDirHandle = INVALID_HANDLE_VALUE;
79 pDir->dir_ulCookie = __DIRENT_COOKIE;
81 return pDir;
85 closedir(DIR *pDir)
    [all...]
  /hardware/ti/omap4xxx/security/tf_daemon/
smc_properties.c 108 char *pDir = pPath;
121 pDir = malloc(sizeof(char) * nSlashIndex);
122 if (pDir == NULL)
127 strncpy(pDir, pPath, nSlashIndex);
128 pDir[nSlashIndex] = '\0';
132 result = stat(pDir, &buf);
136 if (SymbianCheckFSDirectory(pDir) == -1)
138 printf("Cannot create directory : %s\n.", pDir);
142 printf("Unknown path : %s\n.", pDir);
151 printf("Path %s doesn't point on a directory.\n", pDir);
    [all...]
  /external/icu4c/tools/toolutil/
filetools.cpp 44 DIR *pDir = NULL;
45 if ((pDir= opendir(checkAgainst)) != NULL) {
49 while ((dirEntry = readdir(pDir)) != NULL) {
73 closedir(pDir);
  /frameworks/base/drm/libdrmframework/include/
PlugInManager.h 204 DIR* pDir = opendir(rsDirPath.string());
207 while (NULL != pDir && NULL != (pEntry = readdir(pDir))) {
219 if (NULL != pDir) {
220 closedir(pDir);
  /frameworks/base/core/tests/coretests/src/android/content/pm/
AppCacheTest.java 57 void cleanUpDirectory(File pDir, String dirName) {
58 File testDir = new File(pDir, dirName);
697 void verifyUserDataCleared(File pDir) {
698 if(localLOGV) Log.i(TAG, "Verifying "+pDir);
699 if(pDir == null) {
702 String fileList[] = pDir.list();
709 if(localLOGV) Log.i(TAG, "Found entry "+fileList[i]+ "in "+pDir);
714 fail(pDir+" should be empty or contain only lib subdirectory. Found "+fileList[i]);
  /frameworks/base/libs/utils/
AssetManager.cpp     [all...]

Completed in 338 milliseconds