HomeSort by relevance Sort by last modified time
    Searched defs:dfd (Results 1 - 9 of 9) sorted by null

  /external/qemu/slirp-android/
debug.c 11 FILE *dfd = NULL; variable
33 if (dfd)
34 fclose(dfd);
36 dfd = fopen(file,"w");
37 if (dfd != NULL) {
39 fprintf(dfd,"Slirp %s - Debugging Started.\n", SLIRP_VERSION);
41 fprintf(dfd,"Debugging Started level %i.\r\n",dbg);
42 fflush(dfd);
64 DEBUG_MISC((dfd, "PACKET DUMPED: \n"));
67 DEBUG_MISC((dfd, "%02x ", *pptr++))
    [all...]
  /system/netd/
main.cpp 104 int dfd, fd; local
106 dfd = dirfd(d);
108 fd = openat(dfd, "uevent", O_WRONLY);
123 fd = openat(dfd, de->d_name, O_RDONLY | O_DIRECTORY);
  /external/qemu/slirp/
debug.c 11 FILE *dfd = NULL; variable
32 if (dfd)
33 fclose(dfd);
35 dfd = fopen(file,"w");
36 if (dfd != NULL) {
38 fprintf(dfd,"Slirp %s - Debugging Started.\n", SLIRP_VERSION);
40 fprintf(dfd,"Debugging Started level %i.\r\n",dbg);
41 fflush(dfd);
63 DEBUG_MISC((dfd, "PACKET DUMPED: \n"));
66 DEBUG_MISC((dfd, "%02x ", *pptr++))
    [all...]
  /system/vold/
main.cpp 112 int dfd, fd; local
114 dfd = dirfd(d);
116 fd = openat(dfd, "uevent", O_WRONLY);
131 fd = openat(dfd, de->d_name, O_RDONLY | O_DIRECTORY);
  /external/chromium_org/third_party/sqlite/src/src/
test_demovfs.c 461 int dfd; /* File descriptor open on directory */ local
472 dfd = open(zDir, O_RDONLY, 0);
473 if( dfd<0 ){
476 rc = fsync(dfd);
477 close(dfd);
  /frameworks/native/cmds/installd/
commands.c 429 int dfd; local
466 dfd = dirfd(d);
467 codesize += calculate_dir_size(dfd);
488 dfd = dirfd(d);
506 if (fstatat(dfd, name, &s, AT_SYMLINK_NOFOLLOW) == 0) {
509 subfd = openat(dfd, name, O_RDONLY | O_DIRECTORY);
524 if (fstatat(dfd, name, &s, AT_SYMLINK_NOFOLLOW) == 0) {
528 if (fstatat(dfd, name, &s, AT_SYMLINK_NOFOLLOW) == 0) {
878 int dfd, subfd; local
895 dfd = dirfd(d)
    [all...]
utils.c 215 int dfd; local
217 dfd = dirfd(d);
219 if (dfd < 0) return -1;
237 subfd = openat(dfd, name, O_RDONLY | O_DIRECTORY);
254 if (unlinkat(dfd, name, AT_REMOVEDIR) < 0) {
259 if (unlinkat(dfd, name, 0) < 0) {
292 int delete_dir_contents_fd(int dfd, const char *name)
297 fd = openat(dfd, name, O_RDONLY | O_DIRECTORY);
513 int dfd; local
518 dfd = dirfd(dir)
    [all...]
  /system/core/init/
devices.c 850 int dfd, fd; local
852 dfd = dirfd(d);
854 fd = openat(dfd, "uevent", O_WRONLY);
867 fd = openat(dfd, de->d_name, O_RDONLY | O_DIRECTORY);
  /system/core/charger/
charger.c 549 int dfd, fd; local
551 dfd = dirfd(d);
553 fd = openat(dfd, "uevent", O_WRONLY);
573 fd = openat(dfd, de->d_name, O_RDONLY | O_DIRECTORY);
575 LOGE("cannot openat %d '%s' (%d: %s)\n", dfd, de->d_name,

Completed in 237 milliseconds