HomeSort by relevance Sort by last modified time
    Searched defs:pDir (Results 1 - 7 of 7) 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...]
  /external/icu4c/tools/toolutil/
filetools.cpp 45 DIR *pDir = NULL;
46 if ((pDir= opendir(checkAgainst)) != NULL) {
50 while ((dirEntry = readdir(pDir)) != NULL) {
74 closedir(pDir);
  /frameworks/av/media/libmediaplayerservice/
Crypto.cpp 108 DIR* pDir = opendir(dirPath.string());
109 if (pDir) {
111 while ((pEntry = readdir(pDir))) {
120 closedir(pDir);
126 closedir(pDir);
Drm.cpp 150 DIR* pDir = opendir(dirPath.string());
152 if (pDir == NULL) {
160 while ((pEntry = readdir(pDir))) {
169 closedir(pDir);
175 closedir(pDir);
  /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...]
  /frameworks/av/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/libs/androidfw/
AssetManager.cpp     [all...]

Completed in 231 milliseconds