Lines Matching defs:call

1265         control_write( client, "KO: missing argument, try 'gsm call <phonenumber>'\r\n" );
1286 control_write( client, "KO: missing argument, try 'gsm call <phonenumber>'\r\n" );
1325 ACall call = amodem_get_call( android_modem, nn );
1328 if (call == NULL)
1331 if (call->dir == A_CALL_OUTBOUND)
1337 call->number, call_state_to_string(call->state) );
1345 ACall call;
1351 call = amodem_find_call_by_number( android_modem, args );
1352 if (call == NULL || call->dir != A_CALL_OUTBOUND) {
1353 control_write( client, "KO: no current outbound call to number '%s' (call %p)\r\n", args, call );
1366 ACall call;
1372 call = amodem_find_call_by_number( android_modem, args );
1373 if (call == NULL) {
1374 control_write( client, "KO: no current call to/from number '%s'\r\n", args );
1378 control_write( client, "KO: could put this call on hold\r\n" );
1388 ACall call;
1394 call = amodem_find_call_by_number( android_modem, args );
1395 if (call == NULL) {
1396 control_write( client, "KO: no current call to/from number '%s'\r\n", args );
1400 control_write( client, "KO: could not activate this call\r\n" );
1469 { "new", "create a new 'waiting' inbound call",
1470 "'gsm in create <phonenumber>' creates a new inbound phone call, placed in\r\n"
1474 { "hold", "change the state of an oubtound call to 'held'",
1475 "change the state of an outbound call to 'held'. this is only possible\r\n"
1476 "if the call in the 'waiting' or 'active' state\r\n", NULL,
1479 { "accept", "change the state of an outbound call to 'active'",
1480 "change the state of an outbound call to 'active'. this is only possible\r\n"
1481 "if the call is in the 'waiting' or 'held' state\r\n", NULL,
1505 { "call", "create inbound phone call",
1506 "'gsm call <phonenumber>' allows you to simulate a new inbound call\r\n", NULL,
1509 { "busy", "close waiting outbound call as busy",
1510 "'gsm busy <remoteNumber>' closes an outbound call, reporting\r\n"
1511 "the remote phone as busy. only possible if the call is 'waiting'.\r\n", NULL,
1514 { "hold", "change the state of an oubtound call to 'held'",
1515 "'gsm hold <remoteNumber>' change the state of a call to 'held'. this is only possible\r\n"
1516 "if the call in the 'waiting' or 'active' state\r\n", NULL,
1519 { "accept", "change the state of an outbound call to 'active'",
1520 "'gsm accept <remoteNumber>' change the state of a call to 'active'. this is only possible\r\n"
1521 "if the call is in the 'waiting' or 'held' state\r\n", NULL,
1524 { "cancel", "disconnect an inbound or outbound phone call",
1525 "'gsm cancel <phonenumber>' allows you to simulate the end of an inbound or outbound call\r\n", NULL,
2898 "allows you to change GSM-related settings, or to make a new inbound phone call\r\n", NULL,