OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:adb_open
(Results
1 - 8
of
8
) sorted by null
/system/core/adb/
usb_linux_client.cpp
405
h->control =
adb_open
(USB_FFS_ADB_EP0, O_RDWR);
434
h->bulk_out =
adb_open
(USB_FFS_ADB_OUT, O_RDWR);
440
h->bulk_in =
adb_open
(USB_FFS_ADB_IN, O_RDWR);
594
dummy_fd =
adb_open
("/dev/null", O_WRONLY);
sysdeps.h
215
extern int
adb_open
(const char* path, int options);
253
return
adb_open
(path, options);
265
// will work but
adb_open
() FDs will not. Additionally the OS handle associated
540
// Similar to the two-argument
adb_open
(), but takes a mode parameter for file
541
// creation. See
adb_open
() for more info.
555
static __inline__ int
adb_open
( const char* pathname, int options )
function
577
// Closes a file descriptor that came from
adb_open
() or adb_open_mode(), but
579
// for
adb_open
() for more info.
transport_local.cpp
188
#define open
adb_open
shell_service.cpp
113
int fd =
adb_open
("/proc/self/oom_score_adj", O_WRONLY | O_CLOEXEC);
416
int child_fd =
adb_open
(pts_name, O_RDWR | O_CLOEXEC);
file_sync_service.cpp
353
int fd =
adb_open
(path, O_RDONLY | O_CLOEXEC);
commandline.cpp
[
all
...]
file_sync_client.cpp
224
int lfd =
adb_open
(lpath, O_RDONLY);
[
all
...]
sysdeps_win32.cpp
382
int
adb_open
(const char* path, int options)
function
400
D("
adb_open
: invalid options (0x%0x)", options);
420
D( "
adb_open
: could not open '%s': ", path );
440
D( "
adb_open
: '%s' => fd %d", path, _fh_to_int(f) );
[
all
...]
Completed in 43 milliseconds