Lines Matching defs:ap_id

115 static char *get_dyn(const char *ap_id);
116 static void remove_dyn(char *ap_id);
133 {"ap_id", "Ap_Id", SZ_EL(ap_log_id), compare_ap_id, print_log_id, set_log_flt},
160 static char aptype_no_dyn[] = "%s: Invalid ap_id: %s\n";
164 " %s [-f] [-y|-n] [-v] [-o hardware_opts ] -c function ap_id [ap_id...]\n",
165 " %s [-f] [-y|-n] [-v] [-o hardware_opts ] -x function ap_id [ap_id...]\n",
167 "\t[-l [ap_id|ap_type...]]\n",
168 " %s [-v] [-o hardware_opts ] -t ap_id [ap_id...]\n",
169 " %s [-v] [-o hardware_opts ] -h [ap_id|ap_type...]\n",
1109 * compare_ap_id - compare two ap_id's
1137 * print_log_id - print logical ap_id
1150 * set_log_flt - Setup filter for logical ap_id
1200 * compare_r_state - compare receptacle state of two ap_id's
1218 * compare_o_state - compare occupant state of two ap_id's
1236 * compare_busy - compare busy field of two ap_id's
1308 * compare_cond - compare condition field of two ap_id's
1361 * compare_time - compare time field of two ap_id's
1556 * print_phys_id - print physical ap_id
2291 * find_arg_type - determine if an argument is an ap_id or an ap_type.
2294 find_arg_type(const char *ap_id)
2308 if (ap_id == NULL || *ap_id == '\0') {
2315 if ((cp = GET_DYN(ap_id)) != NULL) {
2316 len = cp - ap_id;
2318 len = strlen(ap_id);
2325 (void) strncpy(apbuf, ap_id, len);
2347 * Check for ":" which is always present in an ap_id but not maybe
2350 * since an ap_id is of the form <name><instance>:<specific ap name>
2378 get_dyn(const char *ap_id)
2380 if (ap_id == NULL) {
2384 return (strstr(ap_id, CFGA_DYN_SEP));
2391 remove_dyn(char *ap_id)
2395 if (ap_id == NULL) {
2399 cp = strstr(ap_id, CFGA_DYN_SEP);