Home | History | Annotate | Download | only in ap

Lines Matching defs:id_str

136 	char id_str[256], cmd[300];
139 if (identity_len >= sizeof(id_str))
141 os_memcpy(id_str, identity, identity_len);
142 id_str[identity_len] = '\0';
144 if (id_str[i] >= 'a' && id_str[i] <= 'z')
146 if (id_str[i] >= 'A' && id_str[i] <= 'Z')
148 if (id_str[i] >= '0' && id_str[i] <= '9')
150 if (id_str[i] == '-' || id_str[i] == '_' || id_str[i] == '.' ||
151 id_str[i] == ',' || id_str[i] == '@' || id_str[i] == '\\' ||
152 id_str[i] == '!' || id_str[i] == '#' || id_str[i] == '%' ||
153 id_str[i] == '=' || id_str[i] == ' ')
177 "identity='%s' AND phase2=%d;", id_str, phase2);