Home
last modified time | relevance | path

Searched refs:mSessionIdCounter (Results 1 – 18 of 18) sorted by relevance

/aosp12/hardware/qcom/gps/msm8909w_3100/core/
H A DLocAdapterBase.cpp53 uint32_t LocAdapterBase::mSessionIdCounter(1); member in loc_core::LocAdapterBase
57 if (++mSessionIdCounter == 0xFFFFFFFF) in generateSessionId()
58 mSessionIdCounter = 1; in generateSessionId()
60 return mSessionIdCounter; in generateSessionId()
H A DLocAdapterBase.h61 static uint32_t mSessionIdCounter;
/aosp12/hardware/qcom/sdm845/gps/sdm845/core/
H A DLocAdapterBase.cpp54 uint32_t LocAdapterBase::mSessionIdCounter(1); member in loc_core::LocAdapterBase
58 if (++mSessionIdCounter == 0xFFFFFFFF) in generateSessionId()
59 mSessionIdCounter = 1; in generateSessionId()
61 return mSessionIdCounter; in generateSessionId()
H A DLocAdapterBase.h64 static uint32_t mSessionIdCounter;
/aosp12/hardware/qcom/gps/msm8998/core/
H A DLocAdapterBase.cpp53 uint32_t LocAdapterBase::mSessionIdCounter(1); member in loc_core::LocAdapterBase
57 if (++mSessionIdCounter == 0xFFFFFFFF) in generateSessionId()
58 mSessionIdCounter = 1; in generateSessionId()
60 return mSessionIdCounter; in generateSessionId()
H A DLocAdapterBase.h61 static uint32_t mSessionIdCounter;
/aosp12/hardware/qcom/sdm845/gps/msm8998/core/
H A DLocAdapterBase.cpp53 uint32_t LocAdapterBase::mSessionIdCounter(1); member in loc_core::LocAdapterBase
57 if (++mSessionIdCounter == 0xFFFFFFFF) in generateSessionId()
58 mSessionIdCounter = 1; in generateSessionId()
60 return mSessionIdCounter; in generateSessionId()
H A DLocAdapterBase.h61 static uint32_t mSessionIdCounter;
/aosp12/hardware/qcom/sm8150p/gps/core/
H A DLocAdapterBase.cpp55 uint32_t LocAdapterBase::mSessionIdCounter(1); member in loc_core::LocAdapterBase
59 if (++mSessionIdCounter == 0xFFFFFFFF) in generateSessionId()
60 mSessionIdCounter = 1; in generateSessionId()
62 return mSessionIdCounter; in generateSessionId()
H A DLocAdapterBase.h63 static uint32_t mSessionIdCounter;
/aosp12/hardware/qcom/sm7150/gps/core/
H A DLocAdapterBase.cpp62 uint32_t LocAdapterBase::mSessionIdCounter(1); member in loc_core::LocAdapterBase
66 if (++mSessionIdCounter == 0xFFFFFFFF) in generateSessionId()
67 mSessionIdCounter = 1; in generateSessionId()
69 return mSessionIdCounter; in generateSessionId()
H A DLocAdapterBase.h63 static uint32_t mSessionIdCounter;
/aosp12/frameworks/native/libs/binder/
H A DRpcServer.cpp203 LOG_ALWAYS_FATAL_IF(mSessionIdCounter >= INT32_MAX, "Out of session IDs"); in establishConnection()
204 mSessionIdCounter++; in establishConnection()
207 session->setForServer(wp<RpcServer>::fromExisting(this), mSessionIdCounter); in establishConnection()
209 mSessions[mSessionIdCounter] = session; in establishConnection()
/aosp12/hardware/qcom/sm7250/gps/core/
H A DLocAdapterBase.cpp62 uint32_t LocAdapterBase::mSessionIdCounter(1); member in loc_core::LocAdapterBase
66 if (++mSessionIdCounter == 0xFFFFFFFF) in generateSessionId()
67 mSessionIdCounter = 1; in generateSessionId()
69 return mSessionIdCounter; in generateSessionId()
H A DLocAdapterBase.h63 static uint32_t mSessionIdCounter;
/aosp12/hardware/qcom/sm8150/gps/core/
H A DLocAdapterBase.cpp62 uint32_t LocAdapterBase::mSessionIdCounter(1); member in loc_core::LocAdapterBase
66 if (++mSessionIdCounter == 0xFFFFFFFF) in generateSessionId()
67 mSessionIdCounter = 1; in generateSessionId()
69 return mSessionIdCounter; in generateSessionId()
H A DLocAdapterBase.h63 static uint32_t mSessionIdCounter;
/aosp12/frameworks/native/libs/binder/include/binder/
H A DRpcServer.h161 int32_t mSessionIdCounter = 0; variable