HomeSort by relevance Sort by last modified time
    Searched refs:DIR (Results 501 - 525 of 580) sorted by null

<<21222324

  /device/google/marlin/recovery/oem-recovery/
gpt-utils.cpp 536 DIR *scsi_dir = NULL;
    [all...]
  /external/blktrace/btreplay/
btreplay.c 591 DIR *dir = opendir(idir); local
593 if (dir == NULL) {
598 while ((ent = readdir(dir)) != NULL) {
612 closedir(dir);
    [all...]
  /external/ipsec-tools/src/racoon/
eaytest.c 416 DIR *dirp;
  /external/libchrome/base/process/
process_metrics_linux.cc 133 DIR* dir = opendir(task_path.value().c_str()); local
134 if (!dir) {
140 while (struct dirent* ent = readdir(dir)) {
157 closedir(dir);
  /external/skia/src/ports/
SkFontMgr_android_parser.cpp 675 const char* dir,
678 SkAutoTCallIProc<DIR, closedir> fontDirectory(opendir(dir));
703 absoluteFilename.printf("%s/%s", dir, fileName.c_str());
  /external/toybox/lib/
lib.c 159 // flags: 1=make last dir (with mode lastmode, otherwise skips last component)
163 int mkpathat(int atfd, char *dir, mode_t lastmode, int flags)
173 if (!fstatat(atfd, dir, &buf, 0) && !S_ISDIR(buf.st_mode)) {
178 for (s = dir; ;s++) {
183 if (*s == '/' && (flags&2) && s != dir) {
194 if (mkdirat(atfd, dir, mode)) {
197 fprintf(stderr, "%s: created directory '%s'\n", toys.which->name, dir);
920 DIR *dp;
  /external/valgrind/coregrind/
vgdb.c     [all...]
  /external/webrtc/webrtc/p2p/base/
turnport_unittest.cc 85 DIR *dir = opendir("/proc/self/fd/"); local
86 while ((dp = readdir(dir)) != NULL) {
91 closedir(dir);
    [all...]
  /frameworks/native/cmds/dumpstate/
dumpstate.cpp 162 DIR *d;
647 void add_dir(const char *dir, bool recursive) {
649 MYLOGD("Not adding dir %s because dumpstate is not zipping\n", dir);
652 MYLOGD("Adding dir %s (recursive: %d)\n", dir, recursive);
653 DurationReporter duration_reporter(dir, NULL);
654 dump_files(NULL, dir, recursive ? skip_none : is_dir, _add_file_from_fd);
    [all...]
  /hardware/broadcom/libbt/src/
hardware.c 435 DIR *dirp;
    [all...]
  /hardware/bsp/intel/peripheral/audio/generic/
audio_hal.c 208 DIR *dir; local
214 dir = opendir("/dev/snd");
215 if (dir == NULL) {
221 while ((de = readdir(dir))) {
224 closedir(dir);
231 closedir(dir);
    [all...]
  /hardware/ti/omap4-aah/camera/V4LCameraAdapter/
V4LCameraAdapter.cpp 1207 struct dirent *dir; local
    [all...]
  /hardware/ti/omap4-aah/camera/inc/OMXCameraAdapter/
OMXCameraAdapter.h 788 FILE * parseDCCsubDir(DIR *pDir, char *path);
    [all...]
  /external/curl/packages/vms/
gnv_link_curl.com 283 $CREATE/DIR device:[vms$common.gnv.lib]/prot=w:re
289 /source=device:[dir] -
  /system/core/sdcard/
sdcard.c 144 DIR *d;
163 struct node *next; /* per-dir sibling list */
164 struct node *child; /* first contained file by this dir */
385 DIR* dir = opendir(path); local
386 if (!dir) {
390 while ((entry = readdir(dir))) {
397 closedir(dir);
    [all...]
  /device/htc/flounder/sensor_hub/libsensors/
CwMcuSensor.cpp 112 DIR *dp;
    [all...]
  /external/dnsmasq/src/
cache.c 926 DIR *dir_stream;
952 dir is ah->fname
    [all...]
  /external/e2fsprogs/e2fsck/
profile.c 243 DIR *dir; local
251 dir = opendir(dirname);
252 if (!dir)
255 while ((de = readdir(dir)) != NULL) {
291 closedir(dir);
296 closedir(dir);
    [all...]
  /external/fio/
filesetup.c 1415 struct dirent *dir; local
1417 DIR *D;
1428 while ((dir = readdir(D)) != NULL) {
1432 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
1435 sprintf(full_path, "%s%s%s", dirname, FIO_OS_PATH_SEPARATOR, dir->d_name);
  /external/libpcap/
scanner.c     [all...]
  /external/mksh/src/
eval.c     [all...]
  /external/strace/
strace.c 1020 DIR *dir; local
1023 dir = opendir(procdir);
1024 if (dir != NULL) {
1028 while ((de = read_dir(dir)) != NULL) {
1053 closedir(dir);
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpagui.cpp 289 DIR *dir = opendir(ctrl_iface_dir); local
292 if (dir) {
293 while ((dent = readdir(dir))) {
312 closedir(dir);
    [all...]
  /frameworks/av/media/mtp/
MtpServer.cpp 1085 DIR* dir = opendir(path); local
    [all...]
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
wifi_hal.cpp     [all...]

Completed in 811 milliseconds

<<21222324