Lines Matching refs:cmd
58 print('CtrlServer E: req.cmd=' + req.cmd + ' req.token=' + req.token);
67 result = (this.ctrlDispatchTable[req.cmd]).call(this, req);
69 print('ctrlServer: Unknown cmd=' + req.cmd);
74 sendCtrlRequestComplete(result.ctrlStatus, req.cmd,
78 print('CtrlServer X: req.cmd=' + req.cmd + ' req.token=' + req.token);
81 req.cmd + ' req.token=' + req.token + ' err=' + err);
102 function onCtrlServerCmd(cmd, token, protobuf) { argument
104 print('onCtrlServerCmd E cmd=' + cmd + ' token=' + token);
109 if (!isCtrlServerDispatchCommand(cmd)) {
111 ctrlServerReq.cmd = cmd;
120 print('onCtrlServerCmd: get entry from dispatchTable cmd:' + cmd );
121 entry = ctrlServerDispatchTable[cmd];
123 throw ('entry = dispatchTable[' + cmd + '] was undefined');
125 var req = new Request(cmd, token, protobuf, ctrlSchema, entry.schemaName);
131 print('onCtrlServerCmd: Unknown cmd=' + cmd + ' err=' + err);
132 sendCtrlRequestComplete(RIL_E_REQUEST_NOT_SUPPORTED, cmd, token);
135 print('onCtrlServerCmd X cmd=' + cmd + ' token=' + token);
141 function isCtrlServerDispatchCommand(cmd) { argument
142 return (cmd > CTRL_CMD_DISPATH_BASE)