Searched defs:options (Results 1 - 1 of 1) sorted by relevance

/bootable/recovery/minadbd/
H A Dsysdeps.h112 extern int adb_open(const char* path, int options);
141 static __inline__ int adb_open_mode(const char* path, int options, int mode) argument
143 return adb_open(path, options);
146 static __inline__ int unix_open(const char* path, int options,...) argument
148 if ((options & O_CREAT) == 0)
150 return open(path, options);
156 va_start( args, options );
159 return open(path, options, mode);
305 static __inline__ int unix_open(const char* path, int options,...) argument
307 if ((options
322 adb_open_mode( const char* pathname, int options, int mode ) argument
[all...]

Completed in 739 milliseconds