Home | History | Annotate | Download | only in telephony

Lines Matching refs:from_port

106     int                     from_port;
158 remote_call_alloc( RemoteCallType type, int to_port, int from_port )
161 int from_num = remote_number_from_port(from_port);
169 rcall->from_port = from_port;
274 call->from_port, call->to_port, events);
294 call->from_port, call->to_port, call->buff_len - call->buff_pos );
365 remote_call_generic( RemoteCallType type, const char* to_number, int from_port )
370 if ( remote_number_from_port(from_port) < 0 ) {
371 D("%s: from_port value %d is not valid", __FUNCTION__, from_port);
378 if (to_port == from_port) {
382 call = remote_call_alloc( type, to_port, from_port );
387 D("%s: adding new call from port %d to port %d\n", __FUNCTION__, from_port, to_port);
409 remote_call_other( const char* to_number, int from_port, RemoteCallType type )
411 remote_call_generic( type, to_number, from_port );
436 remote_call_cancel( const char* to_number, int from_port )
438 remote_call_generic( REMOTE_CALL_HANGUP, to_number, from_port );