Home
last modified time | relevance | path

Searched refs:p_calls (Results 1 – 2 of 2) sorted by relevance

/device/google/cuttlefish_common/guest/hals/ril/
Dcuttlefish_ril.cpp542 RIL_Call* p_calls = (RIL_Call*)alloca(countCalls * sizeof(RIL_Call)); in request_get_current_calls() local
544 memset(p_calls, 0, countCalls * sizeof(RIL_Call)); in request_get_current_calls()
548 pp_calls[i] = &(p_calls[i]); in request_get_current_calls()
553 iter != gActiveCalls.end(); ++iter, ++p_calls) { in request_get_current_calls()
554 p_calls->state = iter->second.state; in request_get_current_calls()
555 p_calls->index = iter->first; in request_get_current_calls()
556 p_calls->toa = iter->second.isInternational ? 145 : 129; in request_get_current_calls()
557 p_calls->isMpty = iter->second.isMultiParty; in request_get_current_calls()
558 p_calls->isMT = iter->second.isMobileTerminated; in request_get_current_calls()
559 p_calls->als = iter->first; in request_get_current_calls()
[all …]
/device/generic/goldfish/ril/
Dreference-ril.c918 RIL_Call *p_calls; local
948 p_calls = (RIL_Call *)alloca(countCalls * sizeof(RIL_Call));
949 memset (p_calls, 0, countCalls * sizeof(RIL_Call));
953 pp_calls[i] = &(p_calls[i]);
960 err = callFromCLCCLine(p_cur->line, p_calls + countValidCalls);
967 if (p_calls[countValidCalls].state == RIL_CALL_INCOMING
968 || p_calls[countValidCalls].state == RIL_CALL_WAITING
970 s_incomingOrWaitingLine = p_calls[countValidCalls].index;
974 if (p_calls[countValidCalls].state != RIL_CALL_ACTIVE
975 && p_calls[countValidCalls].state != RIL_CALL_HOLDING
[all …]