Lines Matching defs:rc
72 int rc = 0;
82 rc = -1;
100 return rc;
157 int items, len, rc;
197 rc = grow_specs(data);
198 if (rc)
199 return rc;
243 int rc;
255 rc = snprintf(mmap_path, sizeof(mmap_path), "%s.bin", path);
256 if (rc >= (int)sizeof(mmap_path))
263 rc = fstat(mmapfd, &mmap_stat);
264 if (rc < 0) {
364 rc = newid;
380 rc = grow_specs(data);
381 if (rc < 0)
390 rc = -1;
439 rc = 0;
443 return rc;
453 int rc;
458 rc = snprintf(stack_path, sizeof(stack_path), "%s.%s", path, suffix);
459 if (rc >= (int)sizeof(stack_path)) {
478 rc = load_mmap(rec, path, &sb);
479 if (rc == 0)
487 rc = process_line(rec, path, prefix, line_buf, ++lineno);
488 if (rc)
489 return rc;
619 int i, rc, file_stem;
667 rc = pcre_exec(spec->regex, get_pcre_extra(spec), key, strlen(key), 0, 0, NULL, 0);
669 rc = pcre_exec(spec->regex, get_pcre_extra(spec), buf, strlen(buf), 0, 0, NULL, 0);
671 if (rc == 0) {
674 } else if (rc == PCRE_ERROR_NOMATCH)