Lines Matching defs:call
1285 control_write( client, "KO: missing argument, try 'gsm call <phonenumber>'\r\n" );
1306 control_write( client, "KO: missing argument, try 'gsm call <phonenumber>'\r\n" );
1345 ACall call = amodem_get_call( android_modem, nn );
1348 if (call == NULL)
1351 if (call->dir == A_CALL_OUTBOUND)
1357 call->number, call_state_to_string(call->state) );
1365 ACall call;
1371 call = amodem_find_call_by_number( android_modem, args );
1372 if (call == NULL || call->dir != A_CALL_OUTBOUND) {
1373 control_write( client, "KO: no current outbound call to number '%s' (call %p)\r\n", args, call );
1386 ACall call;
1392 call = amodem_find_call_by_number( android_modem, args );
1393 if (call == NULL) {
1394 control_write( client, "KO: no current call to/from number '%s'\r\n", args );
1398 control_write( client, "KO: could put this call on hold\r\n" );
1408 ACall call;
1414 call = amodem_find_call_by_number( android_modem, args );
1415 if (call == NULL) {
1416 control_write( client, "KO: no current call to/from number '%s'\r\n", args );
1420 control_write( client, "KO: could not activate this call\r\n" );
1489 { "new", "create a new 'waiting' inbound call",
1490 "'gsm in create <phonenumber>' creates a new inbound phone call, placed in\r\n"
1494 { "hold", "change the state of an oubtound call to 'held'",
1495 "change the state of an outbound call to 'held'. this is only possible\r\n"
1496 "if the call in the 'waiting' or 'active' state\r\n", NULL,
1499 { "accept", "change the state of an outbound call to 'active'",
1500 "change the state of an outbound call to 'active'. this is only possible\r\n"
1501 "if the call is in the 'waiting' or 'held' state\r\n", NULL,
1525 { "call", "create inbound phone call",
1526 "'gsm call <phonenumber>' allows you to simulate a new inbound call\r\n", NULL,
1529 { "busy", "close waiting outbound call as busy",
1530 "'gsm busy <remoteNumber>' closes an outbound call, reporting\r\n"
1531 "the remote phone as busy. only possible if the call is 'waiting'.\r\n", NULL,
1534 { "hold", "change the state of an oubtound call to 'held'",
1535 "'gsm hold <remoteNumber>' change the state of a call to 'held'. this is only possible\r\n"
1536 "if the call in the 'waiting' or 'active' state\r\n", NULL,
1539 { "accept", "change the state of an outbound call to 'active'",
1540 "'gsm accept <remoteNumber>' change the state of a call to 'active'. this is only possible\r\n"
1541 "if the call is in the 'waiting' or 'held' state\r\n", NULL,
1544 { "cancel", "disconnect an inbound or outbound phone call",
1545 "'gsm cancel <phonenumber>' allows you to simulate the end of an inbound or outbound call\r\n", NULL,
2938 "allows you to change GSM-related settings, or to make a new inbound phone call\r\n", NULL,