Home | History | Annotate | Download | only in utils

Lines Matching refs:rc

24 	int rc;
38 rc = 0;
40 rc = process_line(rec, filename, prefix, line_buf, ++line_num);
41 if (rc)
47 return rc;
85 int rc;
198 rc = pcre_fullinfo(re, NULL, PCRE_INFO_SIZE, &size);
199 if (rc < 0)
214 rc = pcre_fullinfo(re, sd, PCRE_INFO_STUDYSIZE, &size);
215 if (rc < 0)
230 rc = 0;
233 return rc;
235 rc = -1;
282 int fd, rc, opt;
335 rc = process_file(rec, path);
336 if (rc < 0)
339 rc = sort_specs(data);
340 if (rc)
344 rc = snprintf(stack_path, sizeof(stack_path), "%s", out_file);
346 rc = snprintf(stack_path, sizeof(stack_path), "%s.bin", path);
348 if (rc < 0 || rc >= (int)sizeof(stack_path))
355 rc = sprintf(tmp, "%sXXXXXX", stack_path);
356 if (rc < 0)
363 rc = fchmod(fd, buf.st_mode);
364 if (rc < 0) {
369 rc = write_binary_file(data, fd);
370 if (rc < 0)
373 rc = rename(tmp, stack_path);
374 if (rc < 0)
377 rc = 0;
383 return rc;
388 rc = -1;