Searched refs:rc (Results 1 – 6 of 6) sorted by relevance
/scripts/ |
D | jobserver-exec | 60 rc = subprocess.call(sys.argv[1:]) variable 66 sys.exit(rc)
|
D | sorttable.h | 199 int rc = -1; in do_sort() local 359 rc = 0; in do_sort() 366 rc = pthread_join(orc_sort_thread, &retval); in do_sort() 367 if (rc) in do_sort() 372 rc = -1; in do_sort() 379 return rc; in do_sort()
|
D | sorttable.c | 303 int rc = -1; in do_file() local 373 rc = do_sort_32(ehdr, fname, custom_sort); in do_file() 385 rc = do_sort_64(ghdr, fname, custom_sort); in do_file() 394 return rc; in do_file()
|
D | kallsyms.c | 204 int rc; in read_symbol() local 206 rc = fscanf(in, "%llx %c %499s\n", &addr, &type, name); in read_symbol() 207 if (rc != 3) { in read_symbol() 208 if (rc != EOF && fgets(name, 500, in) == NULL) in read_symbol()
|
D | recordmcount.c | 485 int rc = -1; in do_file() local 623 rc = write_file(fname); in do_file() 627 return rc; in do_file()
|
/scripts/dtc/ |
D | flattree.c | 801 int rc; in dt_from_blob() local 815 rc = fread(&magic_buf, sizeof(magic_buf), 1, f); in dt_from_blob() 819 if (rc < 1) { in dt_from_blob() 830 rc = fread(&totalsize_buf, sizeof(totalsize_buf), 1, f); in dt_from_blob() 833 if (rc < 1) { in dt_from_blob() 858 rc = fread(p, 1, sizeleft, f); in dt_from_blob() 863 sizeleft -= rc; in dt_from_blob() 864 p += rc; in dt_from_blob()
|