Lines Matching refs:cpp
843 char **cpp, *cp; in __ns_ldap_freeAttributeMaps() local
853 for (cpp = ptr->mappedAttr; (cp = *cpp) != NULL; cpp++) in __ns_ldap_freeAttributeMaps()
993 char **cpp, **npp; in __ns_ldap_mapAttributeList() local
1002 cpp = (char **)calloc(i+1, sizeof (char *)); in __ns_ldap_mapAttributeList()
1003 if (cpp == NULL) in __ns_ldap_mapAttributeList()
1010 cpp[i] = strdup(npp[0]); in __ns_ldap_mapAttributeList()
1013 if (cpp[i] == NULL) { in __ns_ldap_mapAttributeList()
1014 __s_api_free2dArray(cpp); in __ns_ldap_mapAttributeList()
1018 cpp[i] = strdup(*opp); in __ns_ldap_mapAttributeList()
1019 if (cpp[i] == NULL) { in __ns_ldap_mapAttributeList()
1020 __s_api_free2dArray(cpp); in __ns_ldap_mapAttributeList()
1025 return (cpp); in __ns_ldap_mapAttributeList()