Home | History | Annotate | Download | only in src

Lines Matching refs:map_length

410   int map_length = snprintf(buf, size, "%s", kProcSelfMapsHeader);
411 if (map_length < 0 || map_length >= size) return 0;
413 map_length += FillProcSelfMaps(buf + map_length, size - map_length, &dummy);
414 RAW_DCHECK(map_length <= size, "");
415 char* const map_start = buf + size - map_length; // move to end
416 memmove(map_start, buf, map_length);
417 size -= map_length;
442 memmove(buf + bucket_length, map_start, map_length); // close the gap
444 return bucket_length + map_length;