HomeSort by relevance Sort by last modified time
    Searched defs:unix_read (Results 1 - 3 of 3) sorted by null

  /system/vold/
EncryptInplace.cpp 39 static inline int unix_read(int fd, void* buff, int len) function
520 if (unix_read(realfd, buf, CRYPT_SECTOR_SIZE) <= 0) {
546 if (unix_read(realfd, buf, CRYPT_INPLACE_BUFSIZE) <= 0) {
561 if (unix_read(realfd, buf, CRYPT_SECTOR_SIZE) <= 0) {
cryptfs.cpp 573 static inline int unix_read(int fd, void* buff, int len) function
830 if (unix_read(fd, pdata, crypt_ftr.persist_data_size) < 0){
909 if (unix_read(fd, pdata, crypt_ftr.persist_data_size) < 0) {
    [all...]
  /system/core/adb/
sysdeps.h 131 // Like unix_read(), but may return EINTR.
134 // See the comments for the !defined(_WIN32) version of unix_read().
135 static __inline__ int unix_read(int fd, void* buf, size_t len) { function
370 // Open a file and return a file descriptor that may be used with unix_read(),
376 // by unix_read(), unix_write(), unix_close()). Also, the C Runtime has
405 // adb_write(), adb_close(), but not unix_read(), unix_write(), unix_close().
450 // Like unix_read(), but does not handle EINTR.
554 // On Unix, unix_read(), unix_write(), unix_close() map to adb_read(),
559 #define unix_read adb_read

Completed in 141 milliseconds