HomeSort by relevance Sort by last modified time
    Searched refs:DIR (Results 401 - 425 of 762) sorted by null

<<11121314151617181920>>

  /external/kmod/testsuite/
path.c 183 WRAP_1ARG(DIR*, NULL, opendir);
  /external/libchrome/base/files/
file_enumerator_posix.cc 124 DIR* dir = opendir(source.value().c_str()); local
125 if (!dir)
136 while (readdir_r(dir, &dent_buf, &dent) == 0 && dent) {
158 closedir(dir);
  /external/libcups/cups/
dir.c 22 #include "dir.h"
39 HANDLE dir; /* Directory handle */ member in struct:_cups_dir_s
85 if (dp->dir != INVALID_HANDLE_VALUE)
86 FindClose(dp->dir);
127 dp->dir = INVALID_HANDLE_VALUE;
162 if (dp->dir == INVALID_HANDLE_VALUE)
168 dp->dir = FindFirstFile(dp->directory, &entry);
169 if (dp->dir == INVALID_HANDLE_VALUE)
172 else if (!FindNextFile(dp->dir, &entry))
219 if (dp->dir != INVALID_HANDLE_VALUE
244 DIR *dir; \/* Directory file *\/ member in struct:_cups_dir_s
    [all...]
  /external/libese/third_party/NXPNFC_P61_JCOP_Kit/src/
AlaLib.cpp 175 static const char dir[] = "/data/ala/"; local
178 DIR *fd;
180 if ((fd = opendir(dir)) == NULL)
182 fprintf(stderr, "listdir: can't open %s\n", dir);
190 ALOGE("%s/%s\n", dir, dp->d_name);
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileWrapper.cpp 118 DIR* ProcDir;
  /external/llvm/lib/Fuzzer/
FuzzerIO.cpp 40 static void ListFilesInDirRecursive(const std::string &Dir, long *Epoch,
42 auto E = GetEpoch(Dir);
46 DIR *D = opendir(Dir.c_str());
48 Printf("No such directory: %s; exiting\n", Dir.c_str());
52 std::string Path = DirPlusFile(Dir, E->d_name);
  /external/ltp/lib/
safe_macros.c 737 DIR* safe_opendir(const char *file, const int lineno, void (cleanup_fn)(void),
740 DIR *rval;
753 DIR *dirp)
768 DIR *dirp)
tst_tmpdir.c 39 * FUNCTION TITLE : Create/remove a testing temp dir
124 DIR *dir; local
145 if ((dir = opendir(obj)) == NULL) {
160 for (dir_ent = (struct dirent *)readdir(dir);
161 dir_ent != NULL; dir_ent = (struct dirent *)readdir(dir)) {
174 closedir(dir);
286 tst_resm(TINFO, "Failed to record test working dir");
  /external/ltp/testcases/kernel/syscalls/getcpu/
getcpu01.c 264 DIR *directory_parent, *directory_node;
  /external/ltp/testcases/kernel/syscalls/nftw/
tools.c 79 if (pathdat[i].type == DIR) {
tools64.c 78 if (pathdat[i].type == DIR) {
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_cpufreq.c 202 DIR *dir = opendir("/sys/devices/system/cpu"); local
203 if (!dir) {
208 while ((dp = readdir(dir)) != NULL) {
236 closedir(dir);
  /external/openssh/openbsd-compat/
getcwd.c 41 #include <sys/dir.h>
55 DIR *dir = NULL; local
148 if (!(dir = opendir(up)) || fstat(dirfd(dir), &s))
162 if (!(dp = readdir(dir)))
169 if (!(dp = readdir(dir)))
211 (void)closedir(dir);
232 if (dir)
233 (void)closedir(dir);
    [all...]
  /external/pdfium/core/fxcrt/
fx_stream.h 37 typedef DIR FX_FileHandle;
  /external/protobuf/src/google/protobuf/testing/
file.cc 174 DIR* dir = opendir(name.c_str());
175 if (dir != NULL) {
177 struct dirent* entry = readdir(dir);
186 closedir(dir);
  /external/rmi4utils/rmi4update/
main.cpp 118 DIR * devDir;
  /external/rmi4utils/rmidevice/
hiddevice.cpp 633 DIR * devicesDir;
635 DIR * devDir;
692 DIR * devDir;
718 DIR * devDir;
  /external/syslinux/com32/modules/
dir.c 26 return "[dir]";
70 DIR *dir; local
80 dir = opendir(dirname);
81 if (!dir) {
86 while ((de = readdir(dir)) != NULL) {
110 closedir(dir);
148 closedir(dir);
169 printf("Usage: dir directory\n");
ls.c 26 return "[dir]";
70 DIR *dir; local
80 dir = opendir(dirname);
81 if (!dir) {
86 while ((de = readdir(dir)) != NULL) {
110 closedir(dir);
148 closedir(dir);
  /external/syslinux/com32/rosh/
rosh.h 38 #include <dirent.h> /* fdopendir() opendir() readdir() closedir() DIR */
82 DIR *d;
262 "Commands: ? cat cd cfg dir exit help less ls man more pwd run quit ver";
268 cd Change to directory <dir>\n cd <dir>\n\
270 ls List contents of current directory\n ls <dir>\n\
271 ALSO l dir\n\
  /external/toybox/lib/
dirtree.c 135 DIR *dir; local
138 if (node->dirfd == -1 || !(dir = fdopendir(node->dirfd))) {
149 // according to the fddir() man page, the filehandle in the DIR * can still
153 while ((entry = readdir(dir))) {
170 closedir(dir);
portability.h 103 DIR *fdopendir(int fd);
  /frameworks/av/drm/drmserver/
PlugInManager.h 204 DIR* pDir = opendir(rsDirPath.string());
  /frameworks/base/cmds/incidentd/src/
report_directory.cpp 41 char* dir = strdup(directory); local
44 char* d = dir + 1;
55 if (stat(dir, &st) == 0) {
61 if (mkdir(dir, 0770)) {
63 "Unable to create incident report dir %s: %s", dir,
68 if (chmod(dir, 0770)) {
70 "Unable to set permissions for incident report dir %s: %s", dir,
75 if (chown(dir, AID_SYSTEM, AID_SYSTEM))
121 DIR* dir; local
    [all...]
  /hardware/invensense/6515/libsensors_iio/
SensorBase.cpp 155 DIR *dir; local
157 dir = opendir(dirname);
158 if(dir == NULL)
163 while((de = readdir(dir))) {
187 closedir(dir);

Completed in 588 milliseconds

<<11121314151617181920>>