HomeSort by relevance Sort by last modified time
    Searched refs:mThandle (Results 1 - 4 of 4) sorted by null

  /hardware/qcom/gps/msm8909/utils/
LocThread.cpp 36 pthread_t mThandle;
67 mRunnable(runnable), mJoinable(joinable), mThandle(NULL),
78 mThandle = creator(threadName, threadMain, this);
79 } else if (pthread_create(&mThandle, NULL, threadMain, this)) {
81 mThandle = NULL;
84 if (mThandle) {
91 pthread_setname_np(mThandle, lname);
95 pthread_detach(mThandle);
128 // the obj must remain alive at this time so that mThandle
142 pthread_join(mThandle, NULL)
    [all...]
  /hardware/qcom/gps/msm8909w_3100/utils/
LocThread.cpp 37 pthread_t mThandle;
68 mRunnable(runnable), mJoinable(joinable), mThandle((pthread_t)NULL),
79 mThandle = creator(threadName, threadMain, this);
80 } else if (pthread_create(&mThandle, NULL, threadMain, this)) {
82 mThandle = (pthread_t)NULL;
85 if (mThandle) {
93 pthread_setname_np(mThandle, lname);
97 pthread_detach(mThandle);
130 // the obj must remain alive at this time so that mThandle
144 pthread_join(mThandle, NULL)
    [all...]
  /hardware/qcom/gps/msm8996/utils/
LocThread.cpp 36 pthread_t mThandle;
67 mRunnable(runnable), mJoinable(joinable), mThandle(NULL),
78 mThandle = creator(threadName, threadMain, this);
79 } else if (pthread_create(&mThandle, NULL, threadMain, this)) {
81 mThandle = NULL;
84 if (mThandle) {
91 pthread_setname_np(mThandle, lname);
95 pthread_detach(mThandle);
128 // the obj must remain alive at this time so that mThandle
142 pthread_join(mThandle, NULL)
    [all...]
  /hardware/qcom/gps/msm8998/utils/
LocThread.cpp 37 pthread_t mThandle;
68 mRunnable(runnable), mJoinable(joinable), mThandle(NULL),
79 mThandle = creator(threadName, threadMain, this);
80 } else if (pthread_create(&mThandle, NULL, threadMain, this)) {
82 mThandle = NULL;
85 if (mThandle) {
93 pthread_setname_np(mThandle, lname);
97 pthread_detach(mThandle);
130 // the obj must remain alive at this time so that mThandle
144 pthread_join(mThandle, NULL)
    [all...]

Completed in 512 milliseconds