Home | History | Annotate | Download | only in location

Lines Matching defs:session

142             LOC_LOGW("%s:%d] Existing tracking session present", __FUNCTION__, __LINE__);
149 uint32_t session = mLocationAPI->startTracking(options);
150 LOC_LOGI("%s:%d] start new session: %d", __FUNCTION__, __LINE__, session);
154 requests = new RequestQueue(session);
170 uint32_t session = 0;
173 session = requests->getSession();
174 if (session > 0) {
176 mLocationAPI->stopTracking(session);
188 uint32_t session = 0;
191 session = requests->getSession();
192 if (session > 0) {
194 mLocationAPI->updateTrackingOptions(session, options);
226 LOC_LOGE("%s:%d] session %d has already started.", __FUNCTION__, __LINE__, id);
239 LOC_LOGI("%s:%d] start new session: %d", __FUNCTION__, __LINE__, trackingSession);
250 LOC_LOGI("%s:%d] start new session: %d", __FUNCTION__, __LINE__, batchingSession);
304 LOC_LOGE("%s:%d] session %d is not exist.", __FUNCTION__, __LINE__, id);
351 LOC_LOGI("%s:%d] start new session: %d",
377 LOC_LOGI("%s:%d] start new session: %d",
400 LOC_LOGE("%s:%d] session %d is not exist.", __FUNCTION__, __LINE__, id);
412 uint32_t session = 0;
415 session = requests->getSession();
416 if (session > 0) {
418 mLocationAPI->getBatchedLocations(session, count);
601 uint32_t session = id;
603 LOC_LOGI("%s:%d] start new session: %d", __FUNCTION__, __LINE__, session);
604 requests = new RequestQueue(session);
621 uint32_t session = mLocationControlAPI->gnssDeleteAidingData(data);
622 LOC_LOGI("%s:%d] start new session: %d", __FUNCTION__, __LINE__, session);
623 requests = new RequestQueue(session);
647 uint32_t session = mLocationControlAPI->enable(techType);
648 LOC_LOGI("%s:%d] start new session: %d", __FUNCTION__, __LINE__, session);
649 requests = new RequestQueue(session);
666 uint32_t session = 0;
669 session = requests->getSession();
670 if (session > 0) {
672 mLocationControlAPI->disable(session);
694 uint32_t session = 0;
818 LocationAPIClientBase::getRequestBySession(uint32_t session)
826 mRequestQueues[i]->getSession() == session) {