Searched refs:numInts (Results 1 - 4 of 4) sorted by relevance

/frameworks/native/libs/ui/
H A DGraphicBuffer.cpp259 return (10 + (handle ? handle->numInts : 0))*sizeof(int);
287 buf[9] = handle->numInts;
290 memcpy(&buf[10], h->data + h->numFds, h->numInts*sizeof(int));
311 const size_t numInts = buf[9]; local
318 if (numFds >= maxNumber || numInts >= (maxNumber - 10)) {
321 ALOGE("unflatten: numFds or numInts is too large: %d, %d",
322 numFds, numInts);
326 const size_t sizeNeeded = (10 + numInts) * sizeof(int);
337 if (numFds || numInts) {
343 native_handle* h = native_handle_create(numFds, numInts);
[all...]
/frameworks/base/core/jni/
H A Dandroid_util_StringBlock.cpp129 static const int numInts = sizeof(ResStringPool_span)/sizeof(jint); local
132 num*numInts, numInts,
/frameworks/native/libs/binder/
H A DParcel.cpp764 err = writeInt32(handle->numInts);
774 err = write(handle->data + handle->numFds, sizeof(int)*handle->numInts);
1210 int numFds, numInts; local
1214 err = readInt32(&numInts);
1217 native_handle* h = native_handle_create(numFds, numInts);
1222 err = read(h->data + numFds, sizeof(int)*numInts);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRIL.java3222 int numInts;
3225 numInts = p.readInt();
3227 response = new int[numInts];
3229 for (int i = 0 ; i < numInts ; i++) {
3703 int numInts;
3704 numInts = CDMA_BROADCAST_SMS_NO_OF_SERVICE_CATEGORIES * CDMA_BSI_NO_OF_INTS_STRUCT + 1;
3705 response = new int[numInts];
3712 for (int i = 1; i < numInts; i += CDMA_BSI_NO_OF_INTS_STRUCT ) {
3718 int numInts;
3719 numInts
[all...]

Completed in 1278 milliseconds