Lines Matching defs:buf
265 char *buf;
278 buf = malloc(st.st_size + 1);
279 if (!buf) {
283 if (read(fd, buf, st.st_size) != st.st_size) {
287 buf[st.st_size] = '\0';
290 return buf;
311 void *buf;
361 buf = read_file(m);
362 parse_config_file(buf);
363 free(buf);
388 void *buf;
399 buf = read_file(depfile);
400 parse_dep_file(buf, target);
401 free(buf);