Searched refs:countInts (Results 1 – 2 of 2) sorted by relevance
/device/google/cuttlefish/guest/hals/ril/reference-libril/ |
D | ril_config.cpp | 76 extern bool dispatchInts(int serial, int slotId, int request, int countInts, ...);
|
D | ril_service.cpp | 889 bool dispatchInts(int serial, int slotId, int request, int countInts, ...) { in dispatchInts() argument 895 int *pInts = (int *)calloc(countInts, sizeof(int)); in dispatchInts() 903 va_start(ap, countInts); in dispatchInts() 904 for (int i = 0; i < countInts; i++) { in dispatchInts() 909 CALL_ONREQUEST(request, pInts, countInts * sizeof(int), pRI, slotId); in dispatchInts() 913 memset(pInts, 0, countInts * sizeof(int)); in dispatchInts()
|