Searched refs:pathp (Results 1 – 6 of 6) sorted by relevance
/external/jemalloc_new/include/jemalloc/internal/ |
D | rb.h | 471 } path[sizeof(void *) << 4], *pathp; \ 475 for (pathp = path; pathp->node != NULL; pathp++) { \ 476 int cmp = pathp->cmp = a_cmp(node, pathp->node); \ 479 pathp[1].node = rbtn_left_get(a_type, a_field, \ 480 pathp->node); \ 482 pathp[1].node = rbtn_right_get(a_type, a_field, \ 483 pathp->node); \ 486 pathp->node = node; \ 488 for (pathp--; (uintptr_t)pathp >= (uintptr_t)path; pathp--) { \ 489 a_type *cnode = pathp->node; \ [all …]
|
/external/dtc/ |
D | fdtget.c | 158 const char *pathp; in list_subnodes() local 165 pathp = fdt_get_name(blob, node, NULL); in list_subnodes() 167 if (pathp == NULL) in list_subnodes() 168 pathp = "/* NULL pointer error */"; in list_subnodes() 169 if (*pathp == '\0') in list_subnodes() 170 pathp = "/"; /* root is nameless */ in list_subnodes() 172 puts(pathp); in list_subnodes()
|
/external/openssh/ |
D | misc.c | 665 parse_user_host_path(const char *s, char **userp, char **hostp, char **pathp) in parse_user_host_path() argument 675 if (pathp != NULL) in parse_user_host_path() 676 *pathp = NULL; in parse_user_host_path() 711 if (pathp != NULL) { in parse_user_host_path() 712 *pathp = path; in parse_user_host_path() 858 int *portp, char **pathp) in parse_uri() argument 876 if (pathp != NULL) in parse_uri() 877 *pathp = NULL; in parse_uri() 934 if (pathp != NULL) { in parse_uri() 935 *pathp = path; in parse_uri()
|
D | scp.c | 627 char **pathp) in parse_scp_uri() argument 631 r = parse_uri("scp", uri, userp, hostp, portp, pathp); in parse_scp_uri() 632 if (r == 0 && *pathp == NULL) in parse_scp_uri() 633 *pathp = xstrdup("."); in parse_scp_uri()
|
/external/dtc/libfdt/ |
D | fdt_overlay.c | 59 int fragment, char const **pathp) in overlay_get_target() argument 96 if (pathp) in overlay_get_target() 97 *pathp = path ? path : NULL; in overlay_get_target()
|
/external/libpcap/ |
D | pcap.c | 1727 char **hostp, char **portp, char **pathp, char *ebuf) argument 1745 *pathp = NULL; 1774 *pathp = strdup(source); 1775 if (*pathp == NULL) { 1799 *pathp = strdup(source); 1800 if (*pathp == NULL) { 1831 *pathp = strdup(colonp + 3); 1832 if (*pathp == NULL) { 1860 *pathp = strdup(colonp + 3); 1861 if (*pathp == NULL) { [all …]
|