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

  /system/core/adb/
sysdeps.h 114 extern int adb_open(const char* path, int options);
153 return adb_open(path, options);
165 // will work but adb_open() FDs will not. Additionally the OS handle associated
396 // Similar to the two-argument adb_open(), but takes a mode parameter for file
397 // creation. See adb_open() for more info.
411 static __inline__ int adb_open( const char* pathname, int options )
429 // Closes a file descriptor that came from adb_open() or adb_open_mode(), but
431 // for adb_open() for more info.
shell_service.cpp 339 int oom_score_adj_fd = adb_open("/proc/self/oom_score_adj", O_WRONLY | O_CLOEXEC);
420 int child_fd = adb_open(pts_name, O_RDWR | O_CLOEXEC);
transport_local.cpp 253 #define open adb_open
commandline.cpp 849 unique_fd package_fd(adb_open(filename, O_RDONLY));
    [all...]
file_sync_service.cpp 414 int fd = adb_open(path, O_RDONLY | O_CLOEXEC);
adb.cpp 643 unique_fd fd(adb_open(GetLogFilePath().c_str(), O_RDONLY));
    [all...]
file_sync_client.cpp 435 int lfd = adb_open(lpath, O_RDONLY);
    [all...]
sysdeps_win32.cpp 320 int adb_open(const char* path, int options) function
338 D("adb_open: invalid options (0x%0x)", options);
358 D( "adb_open: could not open '%s': ", path );
378 D( "adb_open: '%s' => fd %d", path, _fh_to_int(f) );
    [all...]
  /system/core/adb/daemon/
usb.cpp 272 h->control = adb_open(USB_FFS_ADB_EP0, O_RDWR);
303 h->bulk_out = adb_open(USB_FFS_ADB_OUT, O_RDWR);
309 h->bulk_in = adb_open(USB_FFS_ADB_IN, O_RDWR);
535 dummy_fd = adb_open("/dev/null", O_WRONLY);

Completed in 61 milliseconds