Searched refs:size (Results 126 - 134 of 134) sorted by path

123456

/system/netd/
H A DCommandListener.cpp206 int CommandListener::writeFile(const char *path, const char *value, int size) { argument
213 if (write(fd, value, size) != size) {
H A DCommandListener.h52 static int writeFile(const char *path, const char *value, int size);
H A DList.h185 size_t size() const { function in class:android::netd::List
H A DNetdConstants.cpp55 const char* argv[argsList.size()];
/system/security/keystore/
H A Dkeystore.cpp201 static size_t readFully(int fd, uint8_t* data, size_t size) { argument
202 size_t remaining = size;
204 ssize_t n = TEMP_FAILURE_RETRY(read(fd, data, size));
206 return size-remaining;
211 return size;
214 static size_t writeFully(int fd, uint8_t* data, size_t size) { argument
215 size_t remaining = size;
217 ssize_t n = TEMP_FAILURE_RETRY(write(fd, data, size));
219 return size-remaining;
224 return size;
1449 socklen_t size = sizeof(cred); local
[all...]
/system/vold/
H A DDirectVolume.cpp393 if (mPaths->size() != 1) {
H A DFat.cpp170 const char *size = tmp; local
172 args[8] = size;
H A Dcryptfs.c94 SLOGE("Cannot open device to get filesystem size ");
166 SLOGE("Cannot get size of block device %s\n", fname);
230 SLOGE("Cannot set footer file size\n", fname);
265 SLOGE("Cannot get size of block device %s\n", fname);
289 SLOGE("footer file %s is not the expected size!\n", fname);
319 /* the footer size is bigger than we expected.
895 /* Update the fs_size field to be the size of the volume */
900 SLOGE("Cannot get size of volume %s\n", real_blkdev);
984 * defaulted to 16 bytes, and the filesystem size to 0.
986 * filesystem size an
1002 cryptfs_enable_wipe(char *crypto_blkdev, off64_t size, int type) argument
1046 cryptfs_enable_inplace(char *crypto_blkdev, char *real_blkdev, off64_t size, off64_t *size_already_done, off64_t tot_size) argument
[all...]
H A Dcryptfs.h62 unsigned int size; member in struct:volume_info

Completed in 1437 milliseconds

123456