Home | History | Annotate | Download | only in wifi_hal

Lines Matching defs:cmd

284             ALOGD("Ignoring reply with cmd = %d", reply.get_cmd());
374 DebugCommand *cmd = new DebugCommand(iface, buffer, &buffer_size, GET_FW_VER);
375 return (wifi_error)cmd->start();
386 DebugCommand *cmd = new DebugCommand(iface, buffer, &buffer_size, GET_DRV_VER);
387 return (wifi_error)cmd->start();
397 DebugCommand *cmd = new DebugCommand(iface, ring_name, GET_RING_DATA);
398 return (wifi_error)cmd->start();
406 DebugCommand *cmd = new DebugCommand(iface, num_rings, status, GET_RING_STATUS);
407 return (wifi_error)cmd->start();
419 DebugCommand *cmd = new DebugCommand(iface, support, GET_FEATURE);
420 return (wifi_error)cmd->start();
431 DebugCommand *cmd = new DebugCommand(iface, verbose_level, flags,
433 return (wifi_error)cmd->start();
531 SetLogHandler *cmd = new SetLogHandler(iface, id, handler);
532 if (cmd) {
533 wifi_register_cmd(handle, id, cmd);
534 wifi_error result = (wifi_error)cmd->start();
553 SetLogHandler *cmd = new SetLogHandler(iface, id, handler);
554 cmd->cancel();
555 cmd->releaseRef();
596 ALOGD("Ignoring reply with cmd = %d", reply.get_cmd());
710 SetAlertHandler *cmd = new SetAlertHandler(iface, id, handler);
712 if (cmd) {
713 wifi_register_cmd(handle, id, cmd);
714 wifi_error result = (wifi_error)cmd->start();
733 SetAlertHandler *cmd = new SetAlertHandler(iface, id, handler);
734 cmd->cancel();
735 cmd->releaseRef();
775 ALOGD("Ignoring reply with cmd = %d", reply.get_cmd());
852 MemoryDumpCommand *cmd = new MemoryDumpCommand(iface, handler);
853 return (wifi_error)cmd->start();