Lines Matching refs:rest
32 char *rest;
37 rest = NULL;
45 rest = line + 1;
54 rest = strchr(line, ':');
55 if (rest == NULL) {
57 rest = strchr(line, '\n');
58 if (rest != NULL) {
59 *rest = '\0';
60 rest = NULL;
66 *rest = '\0';
67 rest++;
72 return rest;
79 char *rest;
82 rest = read_field_as_string(line, &str);
85 return rest;
97 return rest;
113 char *rest;
149 rest = tcline;
153 rest = read_field_as_uint32(rest, table[i].data.uint32);
156 rest = read_field_as_string(rest, table[i].data.str);
164 if (rest == NULL && table[i + 1].type != SSS_COLONDB_SENTINEL) {
169 } else if (rest != NULL && table[i + 1].type == SSS_COLONDB_SENTINEL) {