HomeSort by relevance Sort by last modified time
    Searched refs:DIR (Results 151 - 175 of 286) sorted by null

1 2 3 4 5 67 8 91011>>

  /system/core/debuggerd/
getevent.c 139 DIR *dir; local
141 dir = opendir(dirname);
142 if(dir == NULL)
147 while((de = readdir(dir))) {
155 closedir(dir);
  /system/extras/fatblock/
import.c 196 struct dir *d;
199 DIR *dir; local
215 dir = opendir(path);
216 if (!dir) {
222 d = malloc(sizeof(struct dir));
224 WARN("importing %s: couldn't allocate dir struct: "
226 closedir(dir);
234 closedir(dir);
243 while ((de = readdir(dir))) {
    [all...]
  /external/genext2fs/
configure 491 if test -d conf$$.dir; then
492 rm -f conf$$.dir/conf$$.file
494 rm -f conf$$.dir
495 mkdir conf$$.dir
501 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
504 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
511 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
512 rmdir conf$$.dir 2>/dev/null
1225 --srcdir=DIR find the sources in DIR [configure dir or \`..'
    [all...]
  /external/liblzf/
configure 485 if test -d conf$$.dir; then
486 rm -f conf$$.dir/conf$$.file
488 rm -f conf$$.dir
489 mkdir conf$$.dir
495 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
498 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
505 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
506 rmdir conf$$.dir 2>/dev/null
1183 --srcdir=DIR find the sources in DIR [configure dir or \`..'
    [all...]
  /ndk/sources/host-tools/make-3.81/
configure 470 if test -d conf$$.dir; then
471 rm -f conf$$.dir/conf$$.file
473 rm -f conf$$.dir
474 mkdir conf$$.dir 2>/dev/null
480 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
483 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
493 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
494 rmdir conf$$.dir 2>/dev/null
    [all...]
  /external/wpa_supplicant_8/hostapd/
hostapd_cli.c 611 DIR *dir; local
613 dir = opendir(ctrl_iface_dir);
614 if (dir == NULL) {
621 while ((dent = readdir(dir))) {
627 closedir(dir);
981 DIR *dir = opendir(ctrl_iface_dir); local
982 if (dir) {
983 while ((dent = readdir(dir))) {
    [all...]
  /frameworks/base/cmds/rawbu/
backup.cpp 66 DIR *dir; local
71 dir = opendir(path);
73 if (dir == NULL) {
87 de = readdir(dir);
137 closedir(dir);
164 closedir(dir);
253 DIR *dir; local
260 dir = opendir(srcPath)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/
build-hardy-toolchain.sh 215 --work-dir=*) WORK_DIR="$optarg"
235 --out-dir=*) OPTION_OUT_DIR="$optarg"
279 Alternatively, you can use --ndk-dir=<path> to specify the location of
297 echo " --work-dir=PATH Temporary work directory [$WORK_DIR]"
304 echo " --ndk-dir=PATH Path to NDK (used to download toolchain sources)."
548 local DIR="$2"
549 local DST="$DIR/`basename $URL`"
550 mkdir -p $DIR
    [all...]
  /system/core/toolbox/
getevent.c 264 DIR *dir; local
272 dir = opendir(dirname);
273 if(dir == NULL)
275 while((de = readdir(dir))) {
291 closedir(dir);
453 DIR *dir; local
455 dir = opendir(dirname);
456 if(dir == NULL
    [all...]
  /system/vold/
CommandListener.cpp 223 DIR *dir; local
226 if (!(dir = opendir("/proc"))) {
231 while ((de = readdir(dir))) {
252 closedir(dir);
276 DIR *d = opendir(Volume::SEC_ASECDIR);
279 cli->sendMsg(ResponseCode::OperationFailed, "Failed to open asec dir", true);
  /external/chromium/base/
process_util.h 452 DIR *procfs_dir_;
  /external/chromium/third_party/libjingle/source/talk/base/
fileutils.h 68 // dir is the directory to traverse
101 DIR *dir_;
227 virtual std::string TempFilename(const Pathname &dir,
371 static std::string TempFilename(const Pathname &dir,
373 return EnsureDefaultFilesystem()->TempFilename(dir, prefix);
  /external/qemu/android/utils/
timezone.c 237 DIR* d = opendir( scan->path );
341 D( "%s: found timezone dir as %s\n", __FUNCTION__, tzdir );
  /external/quake/quake/src/WinQuake/
sys_android.cpp 414 DIR* dir = opendir(path); local
415 if(!dir) {
419 while((dp = readdir(dir)) != NULL) {
435 closedir(dir);
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
mergeChangeLogs.pl 53 DIR => ($ENV{'TMPDIR'} || "/tmp"),
  /frameworks/base/core/jni/
android_net_TrafficStats.cpp 102 DIR *dir = opendir(filename); local
103 if (dir == NULL) {
110 while (struct dirent *entry = readdir(dir)) {
120 closedir(dir);
  /system/core/adb/
file_sync_service.c 78 DIR *d;
  /system/core/fastboot/
usb_linux.c 209 DIR *busdir, *devdir;
  /system/core/init/
bootchart.c 244 DIR* dir = opendir("/proc"); local
249 while ((entry = readdir(dir)) != NULL) {
290 closedir(dir);
  /system/core/libcutils/
dir_hash.c 135 DIR *d = opendir(directory_path);
  /system/extras/latencytop/
latencytop.c 203 DIR *dir; local
209 dir = opendir(dirname);
210 if (!dir) {
211 fprintf(stderr, "Could not open task dir for process %d.\n", pid);
217 while ((ent = readdir(dir))) {
226 closedir(dir);
  /system/extras/tests/sdcard/
sysutil.cpp 410 DIR *dir = opendir(directory); local
412 if (NULL != dir)
417 while((entry = readdir(dir)))
430 closedir(dir);
  /external/mksh/src/
check.pl 82 # file, dir or symlink; second word is
93 # file, dir or symlink; second word is
200 ':long-name', 1, # dir/file:lineno:name
350 local($dir) = @_;
354 if (!opendir(DIR, $dir)) {
355 print STDERR "$prog: can't open directory $dir - $!\n";
358 while (defined ($file = readdir(DIR))) {
361 closedir(DIR);
364 $file = "$dir/$file"
    [all...]
  /frameworks/base/cmds/keystore/
keystore.cpp 389 DIR* dir = opendir("."); local
392 if (!dir) {
395 while ((file = readdir(dir)) != NULL) {
398 closedir(dir);
403 DIR* dir = opendir("."); local
405 if (!dir) {
409 while ((file = readdir(dir)) != NULL) {
415 closedir(dir);
604 DIR* dir = opendir("."); local
    [all...]
  /frameworks/base/core/java/android/text/
StaticLayout.java 243 int dir = measured.mDir; local
437 needMultiply, chdirs, dir, easy, bufEnd, includepad, trackpad,
484 needMultiply, chdirs, dir, easy, bufEnd,
611 boolean needMultiply, byte[] chdirs, int dir,
700 lines[off + DIR] |= dir << DIR_SHIFT;
708 mLineDirections[j] = AndroidBidi.directions(dir, chdirs, start - widthStart, chs,
    [all...]

Completed in 461 milliseconds

1 2 3 4 5 67 8 91011>>