/hardware/qcom/msm8998/json-c/ |
H A D | arraylist.h | 25 void **array; member in struct:array_list
|
/hardware/interfaces/drm/1.0/default/ |
H A D | TypeConvert.h | 34 vec.setToExternal(const_cast<T *>(Vector.array()), Vector.size()); 57 const hidl_array<T, SIZE> &array) { 59 vector.appendArray(array.data(), array.size()); 64 hidl_array<T, SIZE> &array) { 66 vector.appendArray(array.data(), array.size()); 56 toVector( const hidl_array<T, SIZE> &array) argument 63 toVector( hidl_array<T, SIZE> &array) argument
|
/hardware/interfaces/tests/foo/1.0/default/lib/include/hidl-test/ |
H A D | FooHelper.h | 41 std::string to_string(const hidl_array<T, SIZE> &array) { argument 42 return to_string(&array[0], SIZE); 46 std::string to_string(const hidl_array<T, SIZE1, SIZE2> &array) { argument 60 out += to_string(array[i][j]);
|
/hardware/qcom/media/msm8974/libstagefrighthw/ |
H A D | QComOMXPlugin.cpp | 123 OMX_U8 **array = new OMX_U8 *[numRoles]; local 125 array[i] = new OMX_U8[OMX_MAX_STRINGNAME_SIZE]; 130 const_cast<OMX_STRING>(name), &numRoles2, array); 141 String8 s((const char *)array[i]); 144 delete[] array[i]; 145 array[i] = NULL; 148 delete[] array; 149 array = NULL;
|
/hardware/qcom/media/msm8996/libstagefrighthw/ |
H A D | QComOMXPlugin.cpp | 123 OMX_U8 **array = new OMX_U8 *[numRoles]; local 125 array[i] = new OMX_U8[OMX_MAX_STRINGNAME_SIZE]; 130 const_cast<OMX_STRING>(name), &numRoles2, array); 141 String8 s((const char *)array[i]); 144 delete[] array[i]; 145 array[i] = NULL; 148 delete[] array; 149 array = NULL;
|
/hardware/qcom/media/msm8998/libstagefrighthw/ |
H A D | QComOMXPlugin.cpp | 123 OMX_U8 **array = new OMX_U8 *[numRoles]; local 125 array[i] = new OMX_U8[OMX_MAX_STRINGNAME_SIZE]; 130 const_cast<OMX_STRING>(name), &numRoles2, array); 141 String8 s((const char *)array[i]); 144 delete[] array[i]; 145 array[i] = NULL; 148 delete[] array; 149 array = NULL;
|
/hardware/qcom/media/sdm845/libstagefrighthw/ |
H A D | QComOMXPlugin.cpp | 123 OMX_U8 **array = new OMX_U8 *[numRoles]; local 125 array[i] = new OMX_U8[OMX_MAX_STRINGNAME_SIZE]; 130 const_cast<OMX_STRING>(name), &numRoles2, array); 141 String8 s((const char *)array[i]); 144 delete[] array[i]; 145 array[i] = NULL; 148 delete[] array; 149 array = NULL;
|
/hardware/intel/common/libstagefrighthw/ |
H A D | WrsOMXPlugin.cpp | 200 OMX_U8 **array = new OMX_U8 *[numRoles]; local 202 array[i] = new OMX_U8[OMX_MAX_STRINGNAME_SIZE]; 207 const_cast<OMX_STRING>(name), &numRoles2, array); 213 String8 s((const char *)array[i]); 216 delete[] array[i]; 217 array[i] = NULL; 220 delete[] array; 221 array = NULL;
|
/hardware/interfaces/tests/pointer/1.0/default/ |
H A D | Pointer.h | 260 hidl_array<IPointer::Sam, 5> array; variable 261 for(size_t i = 0; i < 5; i++) array[i] = *s; 262 _cb(&array); variable 266 hidl_array<const IPointer::Sam *, 5> array; variable 267 for(size_t i = 0; i < 5; i++) array[i] = s; 268 _cb(array); variable
|
/hardware/intel/common/libmix/mix_video/src/ |
H A D | mixframemanager.c | 319 MixVideoFrame *get_expected_frame_from_array(GPtrArray *array, argument 330 if (!array || !expected || !tolerance || !frametimestamp || expected < tolerance) { 335 len = array->len; 341 MixVideoFrame *_frame = (MixVideoFrame *) g_ptr_array_index(array, idx); 355 g_ptr_array_index(array, idx) = NULL; 377 MixVideoFrame *_frame = (MixVideoFrame *) g_ptr_array_index(array, lowest_timestamp_idx); 379 g_ptr_array_index(array, lowest_timestamp_idx) = NULL; 388 void add_frame_into_array(GPtrArray *array, MixVideoFrame *mvf) { argument 393 if (!array || !mvf) { 398 len = array [all...] |
/hardware/intel/common/utils/ISV/omx/ |
H A D | isv_omxcore.cpp | 327 OMX_U8 **array = new OMX_U8 *[numRoles]; local 329 array[i] = new OMX_U8[OMX_MAX_STRINGNAME_SIZE]; 334 const_cast<OMX_STRING>(compName), &numRoles2, array); 342 (const OMX_STRING)&array[i][0], OMX_MAX_STRINGNAME_SIZE); 343 delete[] array[i]; 344 array[i] = NULL; 347 delete[] array; 348 array = NULL;
|
/hardware/interfaces/tests/bar/1.0/default/ |
H A D | Bar.cpp | 80 const hidl_array<hidl_string, 3> &array, 82 return mFoo->haveSomeStrings(array, _cb); 79 haveSomeStrings( const hidl_array<hidl_string, 3> &array, haveSomeStrings_cb _cb) argument
|
/hardware/interfaces/tests/foo/1.0/default/ |
H A D | Foo.cpp | 181 const hidl_array<hidl_string, 3> &array, 185 << array[0].c_str() 187 << array[1].c_str() 189 << array[2].c_str() 180 haveSomeStrings( const hidl_array<hidl_string, 3> &array, haveSomeStrings_cb _cb) argument
|
/hardware/interfaces/tests/baz/1.0/default/ |
H A D | Baz.cpp | 309 Return<void> Baz::haveSomeStrings(const hidl_array<hidl_string, 3>& array, argument 312 << toString(array)
|
/hardware/qcom/bt/msm8909/libbt-vendor/include/ |
H A D | hw_ar3k.h | 148 unsigned char array; member in struct:ps_entry_type
|
/hardware/qcom/bt/msm8992/libbt-vendor/include/ |
H A D | hw_ar3k.h | 148 unsigned char array; member in struct:ps_entry_type
|
/hardware/qcom/bt/msm8996/libbt-vendor/include/ |
H A D | hw_ar3k.h | 148 unsigned char array; member in struct:ps_entry_type
|
/hardware/qcom/bt/msm8998/libbt-vendor/include/ |
H A D | hw_ar3k.h | 150 unsigned char array; member in struct:ps_entry_type
|
/hardware/qcom/bt/sdm845/libbt-vendor/include/ |
H A D | hw_ar3k.h | 148 unsigned char array; member in struct:ps_entry_type
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/ |
H A D | bcmutils.c | 1343 uint8 *pdata, /* pointer to array of data to process */ 1416 uint8 *pdata, /* pointer to array of data to process */ 2266 /* Set bit in byte array. */ 2268 setbit(void *array, uint bit) argument 2270 ((uint8 *)array)[bit / NBBY] |= 1 << (bit % NBBY); 2273 /* Clear bit in byte array. */ 2275 clrbit(void *array, uint bit) argument 2277 ((uint8 *)array)[bit / NBBY] &= ~(1 << (bit % NBBY)); 2280 /* Test if bit is set in byte array. */ 2282 isset(const void *array, uin argument 2289 isclr(const void *array, uint bit) argument [all...] |