Searched refs:numInts (Results 1 – 6 of 6) sorted by relevance
/system/core/libcutils/ |
D | native_handle.c | 31 native_handle_t* native_handle_init(char* storage, int numFds, int numInts) in native_handle_init() argument 40 handle->numInts = numInts; in native_handle_init() 45 native_handle_t* native_handle_create(int numFds, int numInts) in native_handle_create() argument 47 if (numFds < 0 || numInts < 0 || numFds > kMaxNativeFds || numInts > kMaxNativeInts) { in native_handle_create() 51 size_t mallocSize = sizeof(native_handle_t) + (sizeof(int) * (numFds + numInts)); in native_handle_create() 56 h->numInts = numInts; in native_handle_create() 63 native_handle_t* clone = native_handle_create(handle->numFds, handle->numInts); in native_handle_clone() 77 sizeof(int) * handle->numInts); in native_handle_clone()
|
/system/core/libcutils/include/cutils/ |
D | native_handle.h | 35 int numInts; /* number of ints at &data[numFds] */ member 63 native_handle_t* native_handle_init(char* storage, int numFds, int numInts); 72 native_handle_t* native_handle_create(int numFds, int numInts);
|
/system/core/libcutils/include_vndk/cutils/ |
D | native_handle.h | 35 int numInts; /* number of ints at &data[numFds] */ member 63 native_handle_t* native_handle_init(char* storage, int numFds, int numInts); 72 native_handle_t* native_handle_create(int numFds, int numInts);
|
/system/libhidl/base/include/hidl/ |
D | MQDescriptor.h | 223 other.mHandle->numFds, other.mHandle->numInts); in MQDescriptor() 231 other.mHandle->numInts * sizeof(int)); in MQDescriptor()
|
/system/tools/hidl/test/ |
D | hidl_test_client.cpp | 1345 EXPECT_EQ(handle->numInts, 10); in TEST_F() 1360 EXPECT_EQ(h->numInts, 10) << " for element " << i; in TEST_F()
|
/system/libhwbinder/ |
D | Parcel.cpp | 1058 + handle->numFds * sizeof(int) + handle->numInts * sizeof(int); in writeNativeHandleNoDup()
|