Home
last modified time | relevance | path

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

/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_open.c909 char *p_providers = NULL; in dt_provmod_open() local
922 error = sysctlbyname("debug.dtrace.providers",p_providers,&len,NULL,0); in dt_provmod_open()
926 else if (error == 0 && p_providers == NULL) { in dt_provmod_open()
932 if ((p_providers = malloc(len)) == NULL) in dt_provmod_open()
941 if ((p = realloc(p_providers,len)) == NULL) { in dt_provmod_open()
942 free(p_providers); in dt_provmod_open()
946 p_providers = p; in dt_provmod_open()
952 if (error == 0 && len > 0 && p_providers != NULL) { in dt_provmod_open()
953 p = p_providers; in dt_provmod_open()
991 if (p_providers != NULL) in dt_provmod_open()
[all …]