Searched refs:last_colon (Results 1 - 6 of 6) sorted by relevance

/netbsd-current/usr.sbin/pf/pfs/
H A Dparse.y288 const char* p, *last_colon, *first_bracket, *last_bracket;
296 last_colon = NULL;
302 last_colon = p;
326 if (*(last_colon+1) == '[')
327 first_bracket = last_colon + 1;
342 addr_len = last_colon - str;
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/src/
H A Dread-stringtable.c555 char *last_colon; local
560 && (last_colon = strrchr (line + 6, ':')) != NULL
561 && *(last_colon + 1) != '\0'
562 && (number = strtoul (last_colon + 1, &endp, 10), *endp == '\0'))
565 *last_colon = '\0';
/netbsd-current/external/gpl3/gdb.old/dist/gdbserver/
H A Dgdbreplay.cc156 char *last_colon = strrchr (name, ':'); local
158 if (last_colon == NULL)
/netbsd-current/external/gpl3/gdb/dist/gdbserver/
H A Dgdbreplay.cc118 const char *last_colon = strrchr (name, ':'); local
120 if (last_colon == NULL)
/netbsd-current/usr.sbin/wgconfig/
H A Dwgconfig.c548 char *last_colon = tmp; local
550 last_colon = tmp;
551 colon = last_colon;
/netbsd-current/external/apache2/llvm/dist/clang/tools/c-index-test/
H A Dc-index-test.c2335 const char *last_colon = strrchr(input, ':'); local
2340 if (!last_colon || last_colon == input) {
2353 values[num_values - i - 1] = strtol(last_colon + 1, &endptr, 10);
2364 prev_colon = last_colon - 1;
2373 last_colon = prev_colon;
2385 *filename = (char*)malloc(last_colon - input + 1);
2387 memcpy(*filename, input, last_colon - input);
2388 (*filename)[last_colon - input] = 0;

Completed in 212 milliseconds