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

1234567

/system/core/libcutils/
H A Dsockets.c29 socklen_t len = sizeof(cr); local
30 int n = getsockopt(fd, SOL_SOCKET, SO_PEERCRED, &cr, &len);
H A Dpartition_utils.c25 static int only_one_char(char *buf, int len, char c) argument
30 for (i=0; i<len; i++) {
H A Dprocess_name.c43 int len = strlen(new_name); local
44 char* copy = (char*) malloc(len + 1);
49 if (len < 16) {
52 prctl(PR_SET_NAME, (unsigned long) new_name + len - 15, 0, 0, 0);
H A Duio.c28 int len = vecs->iov_len; local
30 while (len > 0) {
31 int ret = read( fd, buf, len );
42 len -= ret;
55 int len = (int)vecs->iov_len; local
57 while (len > 0) {
58 int ret = write( fd, buf, len );
69 len -= ret;
H A Dashmem-dev.c75 int ashmem_pin_region(int fd, size_t offset, size_t len) argument
77 struct ashmem_pin pin = { offset, len };
81 int ashmem_unpin_region(int fd, size_t offset, size_t len) argument
83 struct ashmem_pin pin = { offset, len };
H A Dstrdup16to8.c29 extern size_t strnlen16to8(const char16_t* utf16Str, size_t len) argument
34 * potentially be as big as 3*len, which will overflow
35 * for len > SIZE_MAX/3.
43 * dst = malloc(strnlen16to8(utf16,len)+1)
55 /* Fast path for the usual case where 3*len is < SIZE_MAX-1.
57 if (len < (SIZE_MAX-1)/3) {
58 while (len--) {
72 while (len--) {
102 * not just "len".
107 extern char* strncpy16to8(char* utf8Str, const char16_t* utf16Str, size_t len) argument
146 size_t len; local
[all...]
H A Dashmem-host.c68 /* truncate the file to `len' bytes */
86 int ashmem_pin_region(int fd, size_t offset, size_t len) argument
91 int ashmem_unpin_region(int fd, size_t offset, size_t len) argument
H A Dfs.c116 int len = snprintf(buf, BUF_SIZE, "%d", value) + 1; local
117 if (len > BUF_SIZE) {
121 if (TEMP_FAILURE_RETRY(write(fd, buf, len)) < len) {
/system/core/libmincrypt/
H A Drsa.c32 const int len,
37 const int len,
42 const int len,
46 return RSA_e_3_verify(key, signature, len, sha);
49 return RSA_e_f4_verify(key, signature, len, sha);
40 RSA_verify(const RSAPublicKey *key, const uint8_t *signature, const int len, const uint8_t *sha) argument
/system/core/libsparse/
H A Dsparse_file.h24 int64_t len; member in struct:sparse_file
H A Dimg2simg.c54 off64_t len; local
90 len = lseek64(in, 0, SEEK_END);
93 s = sparse_file_new(block_size, len);
/system/extras/ext4_utils/
H A Dwipe.c33 int wipe_block_device(int fd, s64 len) argument
39 range[1] = len;
43 range[1] = len;
57 int wipe_block_device(int fd, s64 len) argument
/system/core/include/mincrypt/
H A Drsa.h41 int len; /* Length of n[] in number of uint32_t */ member in struct:RSAPublicKey
50 const int len,
/system/core/toolbox/
H A Dsmd.c9 int fd, len, r, port = 0; local
28 len = strlen(argv[0]);
29 r = write(fd, argv[0], len);
30 if(r != len) {
H A Dgetsebool.c17 int i, get_all = 0, rc = 0, active, pending, len = 0, opt; local
31 rc = security_get_boolean_names(&names, &len);
38 if (!len) {
53 if (!len) {
56 len = argc - 1;
57 names = malloc(sizeof(char *) * len);
62 for (i = 0; i < len; i++) {
72 for (i = 0; i < len; i++) {
100 for (i = 0; i < len; i++)
H A Dinsmod.c71 int i, len; local
76 len = min(strlen(argv[i]), end - ptr);
77 memcpy(ptr, argv[i], len);
78 ptr += len;
/system/netd/
H A Doem_iptables_hook.cpp34 size_t len = strnlen(cmd, 255); local
37 if (len == 255) {
/system/core/adb/
H A Dtest_track_devices.c17 unix_write( int fd, const char* buf, int len )
20 while (len > 0) {
21 int len2 = write(fd, buf, len);
28 len -= len2;
35 unix_read( int fd, char* buf, int len )
38 while (len > 0) {
39 int len2 = read(fd, buf, len);
46 len -= len2;
59 int len; local
71 len
[all...]
H A Dtest_track_jdwp.c17 unix_write( int fd, const char* buf, int len )
20 while (len > 0) {
21 int len2 = write(fd, buf, len);
28 len -= len2;
35 unix_read( int fd, char* buf, int len )
38 while (len > 0) {
39 int len2 = read(fd, buf, len);
46 len -= len2;
59 int len; local
71 len
[all...]
H A Dutils.c48 buff_addb (char* buff, char* buffEnd, const void* data, int len) argument
52 if (avail <= 0 || len <= 0) /* already overflowing */
55 if (len > avail)
56 len = avail;
58 memcpy(buff, data, len);
60 buff += len;
H A Dadb_auth.h34 int adb_auth_get_userkey(unsigned char *data, size_t len);
38 static inline void adb_auth_confirm_key(unsigned char *data, size_t len, atransport *t) { } argument
45 static inline int adb_auth_get_userkey(unsigned char *data, size_t len) { return 0; } argument
49 void adb_auth_confirm_key(unsigned char *data, size_t len, atransport *t);
/system/core/debuggerd/
H A Dutility.c41 int len; local
43 len = strlen(buf);
44 write(log->tfd, buf, len);
/system/core/include/sync/
H A Dsync.h29 uint32_t len; member in struct:sync_fence_info_data
36 uint32_t len; member in struct:sync_pt_info
/system/extras/libpagemap/
H A Dpm_map.c22 int pm_map_pagemap(pm_map_t *map, uint64_t **pagemap_out, size_t *len) { argument
27 pagemap_out, len);
32 size_t len, i; local
40 error = pm_map_pagemap(map, &pagemap, &len);
45 for (i = 0; i < len; i++) {
72 size_t len, i; local
80 error = pm_map_pagemap(map, &pagemap, &len);
85 for (i = 0; i < len; i++) {
/system/bluetooth/brfpatch/
H A Dbrfpatch.c54 static void dump_record(FILE *fpo, unsigned short opcode, unsigned char len, argument
60 fwrite(&len, 1, 1, fpo); // data length
61 fwrite(data, len, 1, fpo); // data

Completed in 532 milliseconds

1234567