OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:p_calls
(Results
1 - 2
of
2
) sorted by null
/device/google/cuttlefish_common/guest/hals/ril/
cuttlefish_ril.cpp
542
RIL_Call*
p_calls
= (RIL_Call*)alloca(countCalls * sizeof(RIL_Call));
local
544
memset(
p_calls
, 0, countCalls * sizeof(RIL_Call));
548
pp_calls[i] = &(
p_calls
[i]);
553
iter != gActiveCalls.end(); ++iter, ++
p_calls
) {
554
p_calls
->state = iter->second.state;
555
p_calls
->index = iter->first;
556
p_calls
->toa = iter->second.isInternational ? 145 : 129;
557
p_calls
->isMpty = iter->second.isMultiParty;
558
p_calls
->isMT = iter->second.isMobileTerminated;
559
p_calls
->als = iter->first
[
all
...]
/device/generic/goldfish/ril/
reference-ril.c
918
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_HOLDIN
[
all
...]
Completed in 81 milliseconds