Home | History | Annotate | Download | only in ap

Lines Matching defs:id_str

138 	char id_str[256], cmd[300];
141 if (identity_len >= sizeof(id_str)) {
144 (int) (sizeof(id_str)));
147 os_memcpy(id_str, identity, identity_len);
148 id_str[identity_len] = '\0';
150 if (id_str[i] >= 'a' && id_str[i] <= 'z')
152 if (id_str[i] >= 'A' && id_str[i] <= 'Z')
154 if (id_str[i] >= '0' && id_str[i] <= '9')
156 if (id_str[i] == '-' || id_str[i] == '_' || id_str[i] == '.' ||
157 id_str[i] == ',' || id_str[i] == '@' || id_str[i] == '\\' ||
158 id_str[i] == '!' || id_str[i] == '#' || id_str[i] == '%' ||
159 id_str[i] == '=' || id_str[i] == ' ')
185 id_str, phase2);