Home | History | Annotate | Download | only in libcutils

Lines Matching full:len

58         int len;
60 len = readlink(path, buf, sizeof(buf));
61 if (len < 0) {
66 SHA1Update(&context, (unsigned char *) buf, len);
71 int len;
79 while ((len = fread(buf, 1, sizeof(buf), f)) > 0) {
80 SHA1Update(&context, (unsigned char *) buf, len);
200 int len = get_file_hash(algorithm, name,
202 if (len < 0) {
207 keep = malloc(len + strlen(name) + 3);
271 int len = 0;
282 len += strlen(r->name);
303 buf = malloc(len + 1);