OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:countCalls
(Results
1 - 4
of
4
) sorted by null
/external/compiler-rt/test/asan/TestCases/Helpers/
initialization-nobug-extra.cc
5
int
countCalls
();
6
static int one =
countCalls
();
/external/compiler-rt/test/asan/TestCases/
initialization-nobug.cc
35
int
countCalls
() {
/device/google/cuttlefish_common/guest/hals/ril/
cuttlefish_ril.cpp
539
const int
countCalls
= gActiveCalls.size();
541
RIL_Call** pp_calls = (RIL_Call**)alloca(
countCalls
* sizeof(RIL_Call*));
542
RIL_Call* p_calls = (RIL_Call*)alloca(
countCalls
* sizeof(RIL_Call));
544
memset(p_calls, 0,
countCalls
* sizeof(RIL_Call));
547
for (int i = 0; i <
countCalls
; i++) {
574
countCalls
* sizeof(RIL_Call*));
576
ALOGV("Get Current calls: %d calls found.\n",
countCalls
);
[
all
...]
/device/generic/goldfish/ril/
reference-ril.c
916
int
countCalls
;
938
for (
countCalls
= 0, p_cur = p_response->p_intermediates
942
countCalls
++;
947
pp_calls = (RIL_Call **)alloca(
countCalls
* sizeof(RIL_Call *));
948
p_calls = (RIL_Call *)alloca(
countCalls
* sizeof(RIL_Call));
949
memset (p_calls, 0,
countCalls
* sizeof(RIL_Call));
952
for(i = 0; i <
countCalls
; i++) {
[
all
...]
Completed in 208 milliseconds