Home
last modified time | relevance | path

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

/freebsd-12-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
Ddt_open.c906 char *p_providers = NULL; in dt_provmod_open() local
919 error = sysctlbyname("debug.dtrace.providers",p_providers,&len,NULL,0); in dt_provmod_open()
923 else if (error == 0 && p_providers == NULL) { in dt_provmod_open()
929 if ((p_providers = malloc(len)) == NULL) in dt_provmod_open()
938 if ((p = realloc(p_providers,len)) == NULL) { in dt_provmod_open()
939 free(p_providers); in dt_provmod_open()
943 p_providers = p; in dt_provmod_open()
949 if (error == 0 && len > 0 && p_providers != NULL) { in dt_provmod_open()
950 p = p_providers; in dt_provmod_open()
988 if (p_providers != NULL) in dt_provmod_open()
[all …]