Home
last modified time | relevance | path

Searched refs:adb_open (Results 1 – 9 of 9) sorted by relevance

/system/core/adb/daemon/
Dusb.cpp272 h->control = adb_open(USB_FFS_ADB_EP0, O_RDWR); in init_functionfs()
303 h->bulk_out = adb_open(USB_FFS_ADB_OUT, O_RDWR); in init_functionfs()
309 h->bulk_in = adb_open(USB_FFS_ADB_IN, O_RDWR); in init_functionfs()
535 dummy_fd = adb_open("/dev/null", O_WRONLY); in usb_init()
/system/core/adb/
Dsysdeps.h114 extern int adb_open(const char* path, int options);
153 return adb_open(path, options); in adb_open_mode()
411 static __inline__ int adb_open( const char* pathname, int options ) in adb_open() function
Dshell_service.cpp339 int oom_score_adj_fd = adb_open("/proc/self/oom_score_adj", O_WRONLY | O_CLOEXEC); in ForkAndExec()
420 int child_fd = adb_open(pts_name, O_RDWR | O_CLOEXEC); in OpenPtyChildFd()
Dtransport_local.cpp253 #define open adb_open
Dcommandline.cpp849 unique_fd package_fd(adb_open(filename, O_RDONLY)); in adb_sideload_host()
1223 int tarFd = adb_open(filename, O_RDONLY); in restore()
1880 int localFd = adb_open(file, O_RDONLY); in install_app()
1993 int localFd = adb_open(file, O_RDONLY); in install_multiple_app()
Dfile_sync_service.cpp414 int fd = adb_open(path, O_RDONLY | O_CLOEXEC); in do_recv()
Dadb.cpp643 unique_fd fd(adb_open(GetLogFilePath().c_str(), O_RDONLY)); in ReportServerStartupFailure()
Dfile_sync_client.cpp435 int lfd = adb_open(lpath, O_RDONLY); in SendLargeFile()
Dsysdeps_win32.cpp320 int adb_open(const char* path, int options) in adb_open() function