Searched defs:ids (Results 1 - 8 of 8) sorted by relevance

/hardware/interfaces/renderscript/1.0/vts/functional/
H A DVtsCopyTests.cpp441 std::vector<Element> ids; local
447 ids = _ids;
452 EXPECT_EQ(element1, ids[0]);
453 EXPECT_EQ(element2, ids[1]);
/hardware/qcom/gps/msm8998/android/location_api/
H A DGeofenceAPIClient.cpp159 geofenceBreachNotification.ids[i], gnssLocation, transition,
180 void GeofenceAPIClient::onAddGeofencesCb(size_t count, LocationError* errors, uint32_t* ids) argument
191 mGnssGeofencingCbIface->gnssGeofenceAddCb(ids[i], status);
196 void GeofenceAPIClient::onRemoveGeofencesCb(size_t count, LocationError* errors, uint32_t* ids) argument
207 mGnssGeofencingCbIface->gnssGeofenceRemoveCb(ids[i], status);
212 void GeofenceAPIClient::onPauseGeofencesCb(size_t count, LocationError* errors, uint32_t* ids) argument
223 mGnssGeofencingCbIface->gnssGeofencePauseCb(ids[i], status);
228 void GeofenceAPIClient::onResumeGeofencesCb(size_t count, LocationError* errors, uint32_t* ids) argument
239 mGnssGeofencingCbIface->gnssGeofenceResumeCb(ids[i], status);
/hardware/qcom/gps/msm8998/location/
H A DLocationAPIClientBase.cpp78 [this](size_t count, LocationError* errors, uint32_t* ids) {
79 onCollectiveResponseCb(count, errors, ids);
97 [this](size_t count, LocationError* errors, uint32_t* ids) {
98 onCtrlCollectiveResponseCb(count, errors, ids);
402 size_t count, uint32_t* ids, GeofenceOption* options, GeofenceInfo* data)
419 mGeofenceBiDict.set(ids[i], sessions[i], options[i].breachTypeMask);
429 void LocationAPIClientBase::locAPIRemoveGeofences(size_t count, uint32_t* ids) argument
438 sessions[i] = mGeofenceBiDict.getSession(ids[i]);
450 size_t count, uint32_t* ids, GeofenceOption* options)
459 sessions[i] = mGeofenceBiDict.getSession(ids[
401 locAPIAddGeofences( size_t count, uint32_t* ids, GeofenceOption* options, GeofenceInfo* data) argument
449 locAPIModifyGeofences( size_t count, uint32_t* ids, GeofenceOption* options) argument
471 locAPIPauseGeofences(size_t count, uint32_t* ids) argument
491 locAPIResumeGeofences( size_t count, uint32_t* ids, GeofenceBreachTypeMask* mask) argument
689 onCollectiveResponseCb( size_t count, LocationError* errors, uint32_t* ids) argument
724 onCtrlCollectiveResponseCb( size_t count, LocationError* errors, uint32_t* ids) argument
[all...]
H A DLocationAPI.cpp462 uint32_t* ids = NULL; local
466 ids = gData.geofenceInterface->addGeofences(this, count, options, info);
473 return ids;
477 LocationAPI::removeGeofences(size_t count, uint32_t* ids) argument
482 gData.geofenceInterface->removeGeofences(this, count, ids);
492 LocationAPI::modifyGeofences(size_t count, uint32_t* ids, GeofenceOption* options) argument
497 gData.geofenceInterface->modifyGeofences(this, count, ids, options);
507 LocationAPI::pauseGeofences(size_t count, uint32_t* ids) argument
512 gData.geofenceInterface->pauseGeofences(this, count, ids);
522 LocationAPI::resumeGeofences(size_t count, uint32_t* ids) argument
646 uint32_t* ids = NULL; local
[all...]
H A DLocationAPIClientBase.h79 uint32_t locAPIAddGeofences(size_t count, uint32_t* ids,
81 void locAPIRemoveGeofences(size_t count, uint32_t* ids);
82 void locAPIModifyGeofences(size_t count, uint32_t* ids, GeofenceOption* options);
83 void locAPIPauseGeofences(size_t count, uint32_t* ids);
84 void locAPIResumeGeofences(size_t count, uint32_t* ids, GeofenceBreachTypeMask* mask);
96 void onCollectiveResponseCb(size_t count, LocationError* errors, uint32_t* ids);
99 void onCtrlCollectiveResponseCb(size_t count, LocationError* errors, uint32_t* ids);
128 size_t /*count*/, LocationError* /*errors*/, uint32_t* /*ids*/) {}
130 size_t /*count*/, LocationError* /*errors*/, uint32_t* /*ids*/) {}
132 size_t /*count*/, LocationError* /*errors*/, uint32_t* /*ids*/) {}
305 uint32_t *ids = (uint32_t*)malloc(sizeof(uint32_t) * count); local
318 uint32_t *ids = (uint32_t*)malloc(sizeof(uint32_t) * count); local
332 uint32_t *ids = (uint32_t*)malloc(sizeof(uint32_t) * count); local
345 uint32_t *ids = (uint32_t*)malloc(sizeof(uint32_t) * count); local
358 uint32_t *ids = (uint32_t*)malloc(sizeof(uint32_t) * count); local
402 onCollectiveResponse(size_t count, LocationError* errors, uint32_t* ids) argument
[all...]
H A DLocationAPI.h423 size_t count; // number of ids in array
424 uint32_t* ids; // array of ids that have breached member in struct:__anon2882
571 ids array and LocationError array are only valid until collectiveResponseCallback returns. */
575 uint32_t* ids // array of ids to be associated to the request
747 /* addGeofences adds any number of geofences and returns an array of geofence ids that
759 /* removeGeofences removes any number of geofences. Caller should delete ids array after
764 void removeGeofences(size_t count, uint32_t* ids);
766 /* modifyGeofences modifies any number of geofences. Caller should delete ids arra
[all...]
/hardware/qcom/gps/msm8998/gnss/
H A DGnssAdapter.cpp561 uint32_t* ids = NULL; local
563 ids = new uint32_t[count];
565 ids[i] = generateSessionId();
567 idsString += std::to_string(ids[i]) + " ";
573 LOC_LOGD("%s]: ids %s flags 0x%X", __func__, idsString.c_str(), config.flags);
584 uint32_t* ids,
590 mIds(ids),
754 if (NULL != ids) {
755 sendMsg(new MsgGnssUpdateConfig(*this, *mLocApi, config, ids, count));
760 return ids;
581 MsgGnssUpdateConfig(GnssAdapter& adapter, LocApiBase& api, GnssConfig config, uint32_t* ids, size_t count) argument
1186 reportResponse(size_t count, LocationError* errs, uint32_t* ids) argument
[all...]
/hardware/interfaces/renderscript/1.0/default/
H A DContext.cpp365 hidl_vec<Element> ids = rs_to_hidl<Element>(_ids, [](uintptr_t val) { return static_cast<Element>(val); }); local
368 _hidl_cb(ids, names, arraySizes);

Completed in 142 milliseconds