Lines Matching refs:pos
114 char buf[2048], *pos, *pos2;
167 pos = strchr(buf, '\n');
168 if (pos)
169 *pos = '\0';
241 pos = buf;
242 while (*pos) {
243 pos2 = strchr(pos, '\n');
246 if (strcmp(pos, ctrl_iface) != 0)
247 adapterSelect->insertItem(pos);
249 pos = pos2 + 1;
286 char buf[2048], *start, *end, *pos;
321 pos = strchr(start, '=');
322 if (pos) {
323 *pos++ = '\0';
326 textBssid->setText(pos);
329 textSsid->setText(pos);
332 textIpAddress->setText(pos);
335 textStatus->setText(pos);
338 textAuthentication->setText(pos);
341 pairwise_cipher = pos;
343 group_cipher = pos;
584 char *pos = msg, *pos2;
587 if (*pos == '<') {
589 pos++;
590 priority = atoi(pos);
591 pos = strchr(pos, '>');
592 if (pos)
593 pos++;
595 pos = msg;
598 WpaMsg wm(pos, priority);
606 if (strncmp(pos, "CTRL-", 5) == 0) {
607 pos2 = strchr(pos, str_match(pos, WPA_CTRL_REQ) ? ':' : ' ');
611 pos2 = pos;
613 pos2 = pos;
621 if (str_match(pos, WPA_CTRL_REQ))
622 processCtrlReq(pos + strlen(WPA_CTRL_REQ));
674 int pos = cmd.find(':');
675 if (pos < 0) {
679 cmd.truncate(pos);
688 int pos = sel.find(':');
689 if (pos < 0) {
693 sel.truncate(pos);