Home | History | Annotate | Download | only in tools

Lines Matching defs:timeout

1340 		unsigned int timeout;
1343 if (sscanf(opt,"%5u", &timeout) != 1) {
1353 cp.timeout = htobs((uint16_t) timeout);
1355 if (timeout < 0x01 || timeout > 0xFFFF)
1356 printf("Warning: page timeout out of range!\n");
1359 fprintf(stderr, "Can't set page timeout on hci%d: %s (%d)\n",
1364 uint16_t timeout;
1373 fprintf(stderr, "Can't read page timeout on hci%d: %s (%d)\n",
1378 printf("Read page timeout on hci%d returned status %d\n",
1384 timeout = btohs(rp.timeout);
1385 printf("\tPage timeout: %u slots (%.2f ms)\n",
1386 timeout, (float)timeout * 0.625);
1717 { "pageto", cmd_page_to, "[to]", "Get/Set page timeout" },