Home | History | Annotate | Download | only in utils

Lines Matching full:len

108     int    len    = end - start;
109 char* result = android_alloc(len+1);
110 memcpy(result, start, len);
111 result[len] = 0;
284 path_mkdir_recursive( char* path, unsigned len, int mode )
291 while (len > 0 && ispathsep(path[len-1]))
292 len -= 1;
294 if (len == 0) {
301 len2 = len-1;
320 old_c = path[len];
321 path[len] = 0;
323 path[len] = old_c;
340 unsigned len = (unsigned)strlen(path);
342 if (len > sizeof(temp)-1) {
346 memcpy( temp, path, len );
347 temp[len] = 0;
349 return path_mkdir_recursive(temp, len, mode);