Home | History | Annotate | Download | only in utils

Lines Matching defs:pos

47 	char *pos, *pos2;
52 pos = data->params;
53 if (pos == NULL)
57 while (pos && *pos) {
58 if (os_strncmp(pos, name, nlen) == 0 && pos[nlen] == '=') {
60 pos += nlen + 1;
61 pos2 = pos;
64 buf = ext_password_alloc(pos2 - pos);
67 wpabuf_put_data(buf, pos, pos2 - pos);
74 pos = os_strchr(pos + 1, '|');
75 if (pos)
76 pos++;