Lines Matching defs:ap_id

124 	char *lc_ap_physical;	/* physical ap_id */
125 char *lc_ap_logical; /* logical ap_id */
276 static cfga_ap_types_t find_arg_type(const char *ap_id);
285 static cfga_err_t split_apid(char *ap_id, char **dyncompp, char **errstring);
364 char *const *ap_id,
407 if (check_apids(num_ap_ids, ap_id, errstring) != CFGA_OK) {
412 * operate on each ap_id
416 if ((retval = config_get_lib(ap_id[i], &libloc, errstring)) !=
492 * operate on each ap_id
543 * operate on each ap_id
834 * the same static ap_id. Check if both are dynamic
847 * Both are dynamic and belong to same static ap_id.
908 * operate on each ap_id
1328 * config_get_lib - given an ap_id find the library name
1333 const char *ap_id,
1342 if (ap_id == NULL) {
1349 if ((apdup = config_calloc_check(1, strlen(ap_id) + 1, errstring))
1353 (void) strcpy(apdup, ap_id);
1369 * interface since the ap_id has a dynamic component.
1378 * If the ap_id is a devlink in CFGA_DEV_DIR, follow link
1379 * to get the physical ap_id.
1399 * The base component of the ap_id is used to locate the plug-in
1406 * physical ap_id: Use ap_base as root for tree walk
1408 * ap_id.
1415 * logical ap_id or ap_type: Use "/" as root for tree walk
1445 * ap_physical is passed to plugins as their ap_id argument.
1961 * the ap_id refers to a PCIE/PCISHPC connector, we'll be able to
1978 * ap_id does not exist, or because the ap_id refers
2015 * ap_id does not exist.
2729 * operate on each ap_id
2939 * find_arg_type - determine if an argument is an ap_id or an ap_type.
2943 find_arg_type(const char *ap_id)
2956 if (ap_id == NULL || *ap_id == '\0') {
2964 if ((cp = GET_DYN(ap_id)) != NULL) {
2965 len = cp - ap_id;
2967 len = strlen(ap_id);
2975 (void) strncpy(ap_base, ap_id, len);
2997 * Check for ":" which is always present in an ap_id
3000 * since an ap_id is of the form <name><instance>:<specific ap name>
3207 split_apid(char *ap_id, char **dyncompp, char **errstring)
3213 if (ap_id == NULL) {
3217 if ((cp = strstr(ap_id, CFGA_DYN_SEP)) == NULL) {