HomeSort by relevance Sort by last modified time
    Searched refs:pDir (Results 1 - 12 of 12) 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 45 DIR *pDir = NULL;
46 if ((pDir= opendir(checkAgainst)) != NULL) {
50 while ((dirEntry = readdir(pDir)) != NULL) {
74 closedir(pDir);
  /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/compile/mclinker/include/mcld/Support/
Directory.h 37 friend void detail::open_dir(Directory& pDir);
38 friend void detail::close_dir(Directory& pDir);
FileSystem.h 106 void open_dir(Directory& pDir);
107 void close_dir(Directory& 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);
  /frameworks/compile/libbcc/include/bcc/Support/
LinkerConfig.h 110 void addSearchDir(const std::string &pDir);
  /frameworks/compile/mclinker/tools/mcld/include/alone/Support/
LinkerConfig.h 103 void addSearchDir(const std::string &pDir);
  /frameworks/base/core/tests/coretests/src/android/content/pm/
AppCacheTest.java 58 void cleanUpDirectory(File pDir, String dirName) {
59 File testDir = new File(pDir, dirName);
698 void verifyUserDataCleared(File pDir) {
699 if(localLOGV) Log.i(TAG, "Verifying "+pDir);
700 if(pDir == null) {
703 String fileList[] = pDir.list();
710 if(localLOGV) Log.i(TAG, "Found entry "+fileList[i]+ "in "+pDir);
715 fail(pDir+" should be empty or contain only lib subdirectory. Found "+fileList[i]);
  /frameworks/base/libs/androidfw/
AssetManager.cpp     [all...]

Completed in 247 milliseconds