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

  /system/vold/
EncryptInplace.cpp 47 static inline int unix_write(int fd, const void* buff, int len) function
544 if (unix_write(cryptofd, buf, CRYPT_SECTOR_SIZE) <= 0) {
569 if (unix_write(cryptofd, buf, CRYPT_INPLACE_BUFSIZE) <= 0) {
592 if (unix_write(cryptofd, buf, CRYPT_SECTOR_SIZE) <= 0) {
cryptfs.cpp 423 static inline int unix_write(int fd, const void* buff, int len) function
465 unix_write(fd, pdata, CRYPT_PERSIST_DATA_SIZE);
469 unix_write(fd, pdata, CRYPT_PERSIST_DATA_SIZE);
500 unix_write(fd, crypt_ftr, sizeof(struct crypt_mnt_ftr));
765 if (unix_write(fd, persist_data, crypt_ftr.persist_data_size) ==
773 if (unix_write(fd, pdata, crypt_ftr.persist_data_size) !=
    [all...]
  /system/core/adb/
sysdeps.h 156 // See the comments for the !defined(_WIN32) version of unix_write().
157 static __inline__ int unix_write(int fd, const void* buf, size_t len) function
385 // unix_write(), unix_close(), but not adb_read(), adb_write(), adb_close().
390 // by unix_read(), unix_write(), unix_close()). Also, the C Runtime has
419 // adb_write(), adb_close(), but not unix_read(), unix_write(), unix_close().
572 // On Unix, unix_read(), unix_write(), unix_close() map to adb_read(),
578 #define unix_write adb_write

Completed in 106 milliseconds