Home
last modified time | relevance | path

Searched refs:numInts (Results 1 – 6 of 6) sorted by relevance

/system/core/libcutils/
Dnative_handle.c31 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/
Dnative_handle.h35 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/
Dnative_handle.h35 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/
DMQDescriptor.h223 other.mHandle->numFds, other.mHandle->numInts); in MQDescriptor()
231 other.mHandle->numInts * sizeof(int)); in MQDescriptor()
/system/tools/hidl/test/
Dhidl_test_client.cpp1345 EXPECT_EQ(handle->numInts, 10); in TEST_F()
1360 EXPECT_EQ(h->numInts, 10) << " for element " << i; in TEST_F()
/system/libhwbinder/
DParcel.cpp1058 + handle->numFds * sizeof(int) + handle->numInts * sizeof(int); in writeNativeHandleNoDup()