Lines Matching defs:ap_id

123 	char *lc_ap_physical;	/* physical ap_id */
124 char *lc_ap_logical; /* logical ap_id */
275 static cfga_ap_types_t find_arg_type(const char *ap_id);
284 static cfga_err_t split_apid(char *ap_id, char **dyncompp, char **errstring);
363 char *const *ap_id,
406 if (check_apids(num_ap_ids, ap_id, errstring) != CFGA_OK) {
411 * operate on each ap_id
415 if ((retval = config_get_lib(ap_id[i], &libloc, errstring)) !=
491 * operate on each ap_id
542 * operate on each ap_id
833 * the same static ap_id. Check if both are dynamic
846 * Both are dynamic and belong to same static ap_id.
907 * operate on each ap_id
1327 * config_get_lib - given an ap_id find the library name
1332 const char *ap_id,
1341 if (ap_id == NULL) {
1348 if ((apdup = config_calloc_check(1, strlen(ap_id) + 1, errstring))
1352 (void) strcpy(apdup, ap_id);
1368 * interface since the ap_id has a dynamic component.
1377 * If the ap_id is a devlink in CFGA_DEV_DIR, follow link
1378 * to get the physical ap_id.
1398 * The base component of the ap_id is used to locate the plug-in
1405 * physical ap_id: Use ap_base as root for tree walk
1407 * ap_id.
1414 * logical ap_id or ap_type: Use "/" as root for tree walk
1444 * ap_physical is passed to plugins as their ap_id argument.
1960 * the ap_id refers to a PCIE/PCISHPC connector, we'll be able to
1977 * ap_id does not exist, or because the ap_id refers
2014 * ap_id does not exist.
2728 * operate on each ap_id
2938 * find_arg_type - determine if an argument is an ap_id or an ap_type.
2942 find_arg_type(const char *ap_id)
2955 if (ap_id == NULL || *ap_id == '\0') {
2963 if ((cp = GET_DYN(ap_id)) != NULL) {
2964 len = cp - ap_id;
2966 len = strlen(ap_id);
2974 (void) strncpy(ap_base, ap_id, len);
2996 * Check for ":" which is always present in an ap_id
2999 * since an ap_id is of the form <name><instance>:<specific ap name>
3206 split_apid(char *ap_id, char **dyncompp, char **errstring)
3212 if (ap_id == NULL) {
3216 if ((cp = strstr(ap_id, CFGA_DYN_SEP)) == NULL) {