Searched refs:adb_open (Results 1 – 13 of 13) sorted by relevance
/system/core/adb/daemon/ |
D | usb_ffs.cpp | 276 control.reset(adb_open(USB_FFS_ADB_EP0, O_RDWR)); in open_functionfs() 305 bulk_out.reset(adb_open(USB_FFS_ADB_OUT, O_RDONLY)); in open_functionfs() 311 bulk_in.reset(adb_open(USB_FFS_ADB_IN, O_WRONLY)); in open_functionfs()
|
D | shell_service.cpp | 364 int oom_score_adj_fd = adb_open("/proc/self/oom_score_adj", O_WRONLY | O_CLOEXEC); in ForkAndExec() 510 int child_fd = adb_open(pts_name, O_RDWR | O_CLOEXEC); in OpenPtyChildFd()
|
D | file_sync_service.cpp | 667 unique_fd fd(adb_open(path, O_RDONLY | O_CLOEXEC)); in recv_impl()
|
/system/core/adb/fastdeploy/deploypatchgenerator/ |
D | deploy_patch_generator_test.cpp | 57 unique_fd apkFile(adb_open(apkPath.c_str(), O_RDWR)); in TEST()
|
D | deploy_patch_generator.cpp | 126 unique_fd input(adb_open(localApkPath.c_str(), O_RDONLY | O_CLOEXEC)); in GeneratePatch()
|
D | apk_archive.cpp | 70 fd_.reset(adb_open(path_.c_str(), O_RDONLY)); in ApkArchive()
|
/system/core/adb/ |
D | sysdeps.h | 100 extern int adb_open(const char* path, int options); 155 return adb_open(path, options); in adb_open_mode() 446 static inline int adb_open(const char* pathname, int options) { in adb_open() function
|
D | sysdeps_win32.cpp | 342 int adb_open(const char* path, int options) { in adb_open() function
|
/system/core/adb/client/ |
D | adb_install.cpp | 205 unique_fd local_fd(adb_open(file, O_RDONLY | O_CLOEXEC)); in install_app_streamed() 629 unique_fd local_fd(adb_open(file, O_RDONLY | O_CLOEXEC)); in install_multiple_app_streamed() 884 unique_fd local_fd(adb_open(split.c_str(), O_RDONLY | O_CLOEXEC)); in install_multi_package()
|
D | incremental.cpp | 50 unique_fd fd(adb_open(signature_file.c_str(), O_RDONLY)); in read_signature()
|
D | incremental_server.cpp | 659 unique_fd fd(adb_open(filepath, O_RDONLY)); in open_fd() 671 unique_fd fd(adb_open(signature_file.c_str(), O_RDONLY)); in open_signature()
|
D | commandline.cpp | 808 unique_fd fd(adb_open("/dev/null", O_RDONLY)); in adb_shell_noinput() 881 unique_fd package_fd(adb_open(filename, O_RDONLY)); in adb_sideload_install() 1303 unique_fd tarFd(adb_open(filename, O_RDONLY)); in restore()
|
D | file_sync_client.cpp | 552 unique_fd lfd(adb_open(lpath.c_str(), O_RDONLY | O_CLOEXEC)); in SendLargeFileCompressed() 635 unique_fd lfd(adb_open(lpath.c_str(), O_RDONLY | O_CLOEXEC)); in SendLargeFile()
|