Home
last modified time | relevance | path

Searched refs:strp (Results 1 – 5 of 5) sorted by relevance

/f-stack/freebsd/contrib/openzfs/cmd/zed/
H A Dzed_event.c562 char **strp; in _zed_event_add_string_array() local
571 (void) nvpair_value_string_array(nvp, &strp, &nelem); in _zed_event_add_string_array()
573 n = snprintf(p, buflen, "%s ", strp[i] ? strp[i] : "<NULL>"); in _zed_event_add_string_array()
/f-stack/freebsd/kern/
H A Dlink_elf.c1502 const char *strp; in link_elf_lookup_symbol() local
1528 strp = ef->strtab + symp->st_name; in link_elf_lookup_symbol()
1530 if (strcmp(name, strp) == 0) { in link_elf_lookup_symbol()
1550 strp = ef->ddbstrtab + symp->st_name; in link_elf_lookup_symbol()
1551 if (strcmp(name, strp) == 0) { in link_elf_lookup_symbol()
H A Dlink_elf_obj.c1358 const char *strp; in link_elf_lookup_symbol() local
1362 strp = ef->ddbstrtab + symp->st_name; in link_elf_lookup_symbol()
1363 if (symp->st_shndx != SHN_UNDEF && strcmp(name, strp) == 0) { in link_elf_lookup_symbol()
/f-stack/freebsd/contrib/openzfs/module/nvpair/
H A Dnvpair.c2935 uint64_t *strp = (void *) in nvpair_native_string_array() local
2942 bzero(strp, NVP_NELEM(nvp) * sizeof (uint64_t)); in nvpair_native_string_array()
2946 char **strp = (void *)NVP_VALUE(nvp); in nvpair_native_string_array() local
2947 char *buf = ((char *)strp + NVP_NELEM(nvp) * sizeof (uint64_t)); in nvpair_native_string_array()
2951 strp[i] = buf; in nvpair_native_string_array()
3374 char **strp = (void *)buf; in nvs_xdr_nvp_op() local
3391 strp[i] = buf; in nvs_xdr_nvp_op()
/f-stack/app/redis-5.0.5/src/
H A Dscripting.c1931 char *strp = (char*)lua_tolstring(lua,idx,&strl); in ldbCatStackValueRec() local
1932 s = sdscatrepr(s,strp,strl); in ldbCatStackValueRec()