Lines Matching defs:buf
218 char *buf;
231 buf = malloc(st.st_size + 1);
232 if (!buf) {
236 if (read(fd, buf, st.st_size) != st.st_size) {
240 buf[st.st_size] = '\0';
243 return buf;
394 void *buf;
396 buf = read_file(p);
397 parse_config_file(buf);
398 free(buf);
418 void *buf;
429 buf = read_file(depfile);
430 parse_dep_file(buf, target);
431 free(buf);