Searched defs:len (Results 151 - 158 of 158) sorted by relevance

1234567

/system/vold/
H A DVolumeManager.cpp79 char *VolumeManager::asecHash(const char *id, char *buffer, size_t len) { argument
92 } else if (len < MD5_ASCII_LENGTH_PLUS_NULL) {
94 MD5_ASCII_LENGTH_PLUS_NULL, len);
H A Dcryptfs.c91 off64_t len; local
112 len = ( ((off64_t)sb.s_blocks_count_hi << 32) + sb.s_blocks_count_lo) * block_size;
115 return (unsigned int) (len / 512);
1030 static inline int unix_read(int fd, void* buff, int len) argument
1033 do { ret = read(fd, buff, len); } while (ret < 0 && errno == EINTR);
1037 static inline int unix_write(int fd, const void* buff, int len) argument
1040 do { ret = write(fd, buff, len); } while (ret < 0 && errno == EINTR);
/system/core/libpixelflinger/codeflinger/
H A DMIPSAssembler.cpp1292 int len = 99; local
1295 while (*s && len-- > 0) {
1299 for ( ; i>0; i--) {*t++ = ' '; len--; }
1312 int len = strlen(s); local
1313 s += len;
1314 for (int i = padded_len - len; i > 0; --i) {
/system/core/libpixelflinger/
H A Dscanline.cpp617 GGLcolor ADJUST_COLOR_ITERATOR(GGLcolor v, GGLcolor dvdx, int len) argument
619 const int32_t end = dvdx * (len-1) + v;
/system/core/sdcard/
H A Dfuse.h537 __u32 len; member in struct:fuse_in_header
548 __u32 len; member in struct:fuse_out_header
569 __s64 len; member in struct:fuse_notify_inval_inode_out
/system/security/keystore/
H A Dkeystore.cpp823 int len = i2d_PKCS8_PRIV_KEY_INFO(pkcs8.get(), NULL); local
824 if (len < 0) {
830 pkcs8key.length = len;
832 if (i2d_PKCS8_PRIV_KEY_INFO(pkcs8.get(), &tmp) != len) {
/system/core/adb/
H A Dsysdeps_win32.c84 int (*_fh_read) ( FH f, void* buf, int len );
85 int (*_fh_write)( FH f, const void* buf, int len );
228 _fh_file_read( FH f, void* buf, int len )
232 if ( !ReadFile( f->fh_handle, buf, (DWORD)len, &read_bytes, NULL ) ) {
233 D( "adb_read: could not read %d bytes from %s\n", len, f->name );
236 } else if (read_bytes < (DWORD)len) {
243 _fh_file_write( FH f, const void* buf, int len )
247 if ( !WriteFile( f->fh_handle, buf, (DWORD)len, &wrote_bytes, NULL ) ) {
248 D( "adb_file_write: could not write %d bytes from %s\n", len, f->name );
251 } else if (wrote_bytes < (DWORD)len) {
402 adb_read(int fd, void* buf, int len) argument
414 adb_write(int fd, const void* buf, int len) argument
[all...]
/system/extras/ext4_utils/
H A Dext4.h65 unsigned int len; member in struct:ext4_allocation_request
297 __u64 len; member in struct:move_extent

Completed in 131 milliseconds

1234567