/hardware/intel/img/psb_video/src/ |
object_heap.h | 39 int id; member in struct:object_base_s 61 * Returns the object ID on success, returns -1 on error 66 * Lookup an allocated object by object ID 69 object_base_p object_heap_lookup(object_heap_p heap, int id);
|
/hardware/libhardware/include/hardware/ |
bt_gatt_types.h | 32 /** GATT ID adding instance id tracking to the UUID */ 39 /** GATT Service ID also identifies the service type (primary/secondary) */ 42 btgatt_gatt_id_t id; member in struct:__anon31150
|
bt_mce.h | 25 int id; member in struct:__anon31203
|
/hardware/libhardware/tests/input/evdev/ |
MouseInputMapper_test.cpp | 53 const auto id = INPUT_COLLECTION_ID_MOUSE; local 54 EXPECT_CALL(reportDef, addCollection(id, 1)); 55 EXPECT_CALL(reportDef, declareUsage(id, INPUT_USAGE_AXIS_X, _, _, _)); 56 EXPECT_CALL(reportDef, declareUsage(id, INPUT_USAGE_AXIS_Y, _, _, _)); 57 EXPECT_CALL(reportDef, declareUsages(id, _, 3)) 97 const auto id = INPUT_COLLECTION_ID_MOUSE; local 98 EXPECT_CALL(report, setIntUsage(id, INPUT_USAGE_AXIS_X, 5, 0)); 99 EXPECT_CALL(report, setIntUsage(id, INPUT_USAGE_AXIS_Y, -3, 0)); 101 EXPECT_CALL(report, setBoolUsage(id, INPUT_USAGE_BUTTON_PRIMARY, 1, 0)); 103 EXPECT_CALL(report, setBoolUsage(id, INPUT_USAGE_BUTTON_PRIMARY, 0, 0)) [all...] |
/hardware/qcom/audio/msm8909/mm-audio/aenc-aac/qdsp6/src/ |
aenc_svr.c | 49 unsigned char id; local 55 n = read(aac_info->pipe_in, &id, 1); 64 aac_info->process_msg_cb(aac_info->client_data, id); 76 unsigned char id = 0; local 79 aac_info->process_msg_cb(aac_info->client_data, id); 202 void omx_aac_post_msg(struct aac_ipc_info *aac_info, unsigned char id) { 203 DEBUG_DETAIL("\n%s id=%d\n", __FUNCTION__,id); 205 write(aac_info->pipe_out, &id, 1);
|
/hardware/qcom/audio/msm8909/mm-audio/aenc-amrnb/qdsp6/src/ |
aenc_svr.c | 49 unsigned char id; local 55 n = read(amr_info->pipe_in, &id, 1); 64 amr_info->process_msg_cb(amr_info->client_data, id); 76 unsigned char id = 0; local 79 amr_info->process_msg_cb(amr_info->client_data, id); 202 void omx_amr_post_msg(struct amr_ipc_info *amr_info, unsigned char id) { 203 DEBUG_DETAIL("\n%s id=%d\n", __FUNCTION__,id); 204 write(amr_info->pipe_out, &id, 1);
|
/hardware/qcom/audio/msm8909/mm-audio/aenc-evrc/qdsp6/src/ |
aenc_svr.c | 49 unsigned char id; local 55 n = read(evrc_info->pipe_in, &id, 1); 64 evrc_info->process_msg_cb(evrc_info->client_data, id); 76 unsigned char id = 0; local 79 evrc_info->process_msg_cb(evrc_info->client_data, id); 202 void omx_evrc_post_msg(struct evrc_ipc_info *evrc_info, unsigned char id) { 203 DEBUG_DETAIL("\n%s id=%d\n", __FUNCTION__,id); 204 write(evrc_info->pipe_out, &id, 1);
|
/hardware/qcom/audio/msm8909/mm-audio/aenc-qcelp13/qdsp6/src/ |
aenc_svr.c | 49 unsigned char id; local 55 n = read(qcelp13_info->pipe_in, &id, 1); 64 qcelp13_info->process_msg_cb(qcelp13_info->client_data, id); 76 unsigned char id = 0; local 79 qcelp13_info->process_msg_cb(qcelp13_info->client_data, id); 204 void omx_qcelp13_post_msg(struct qcelp13_ipc_info *qcelp13_info, unsigned char id) { 205 DEBUG_DETAIL("\n%s id=%d\n", __FUNCTION__,id); 207 write(qcelp13_info->pipe_out, &id, 1);
|
/hardware/qcom/gps/msm8960/utils/ |
loc_timer.c | 121 pthread_t id; local 142 if(pthread_create(&(id), &tattr, timer_thread, (void *)t)) { 148 LOC_LOGD("%s:%d]: Created thread with id: %d\n", 149 __func__, __LINE__, (int)id);
|
/hardware/qcom/wlan/qcwcn/wifi_hal/ |
rb_wrapper.h | 41 int id; member in struct:rb_info 46 wifi_error rb_init(struct hal_info_s *info, struct rb_info *rb_info, int id,
|
/libcore/luni/src/test/java/libcore/java/util/ |
OldLinkedHashMapTest.java | 36 String id = (String) iterator.next(); local 37 map.get(id); 52 id = (String) iterator.next(); 53 mapClone.get(id);
|
/libcore/ojluni/src/main/java/sun/security/x509/ |
CertificatePolicyId.java | 39 private ObjectIdentifier id; field in class:CertificatePolicyId 44 * @param id the ObjectIdentifier for the policy id. 46 public CertificatePolicyId(ObjectIdentifier id) { 47 this.id = id; 56 this.id = val.getOID(); 63 return (id); 71 + id.toString() 84 out.putOID(id); [all...] |
CertificatePolicySet.java | 65 CertificatePolicyId id = new CertificatePolicyId(seq[i]); local 66 ids.addElement(id);
|
/libcore/ojluni/src/main/java/sun/util/locale/ |
Extension.java | 37 private String value, id; field in class:Extension 50 this.id = key + LanguageTag.SEP + value; 62 return id;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.reverse/ |
reverse_copy.pass.cpp | 51 int id[] = {0, 1, 2, 3}; local 52 const unsigned sd = sizeof(id)/sizeof(id[0]); 54 r = std::reverse_copy(InIter(id), InIter(id+sd), OutIter(jd));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.rotate/ |
rotate.pass.cpp | 78 int id[] = {0, 1, 2, 3}; local 79 const unsigned sd = sizeof(id)/sizeof(id[0]); 80 r = std::rotate(Iter(id), Iter(id), Iter(id+sd)); 81 assert(base(r) == id+sd); 82 assert(id[0] == 0); 83 assert(id[1] == 1); 84 assert(id[2] == 2) 278 std::unique_ptr<int> id[4]; local [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.search/ |
search_pred.pass.cpp | 81 int id[] = {1, 2}; local 82 assert(std::search(Iter1(ib), Iter1(ib+sb), Iter2(id), Iter2(id+2), count_equal()) == Iter1(ib+1));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.cons/ |
locale_facetptr.pass.cpp | 74 static std::locale::id id; member in struct:my_facet 77 std::locale::id my_facet::id; member in class:my_facet
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.members/ |
combine.pass.cpp | 72 static std::locale::id id; member in struct:my_facet 75 std::locale::id my_facet::id; member in class:my_facet
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.assign/ |
move.pass.cpp | 65 std::thread::id id = t0.get_id(); local 68 assert(t1.get_id() == id); 69 assert(t0.get_id() == std::thread::id()); 76 std::thread::id id = t0.get_id(); local
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_collate.h | 62 static _STLP_STATIC_DECLSPEC locale::id id; member in class:collate 98 static _STLP_STATIC_DECLSPEC locale::id id; member in class:collate
|
_num_get.h | 123 static locale::id id; member in class:num_get
|
_numpunct.h | 62 static _STLP_STATIC_DECLSPEC locale::id id; member in class:numpunct 91 static _STLP_STATIC_DECLSPEC locale::id id; member in class:numpunct
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/ |
rtti.hpp | 34 static id_t id() { return reinterpret_cast<id_t>( &inst() ); } function in struct:boost::rtti::rtti_detail::rttid_holder 50 return rtti_detail::rttid_holder<T>::id();
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
Entry.java | 28 public static final String ID = "_id"; 33 public long id = 0; field in class:Entry 56 id = 0;
|