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

  /device/generic/goldfish/camera/
EmulatedCameraDevice.h 368 mThreadControl(-1),
375 ALOGW_IF(mThreadControl >= 0 || mControlFD >= 0,
378 if (mThreadControl >= 0) {
379 close(mThreadControl);
456 int mThreadControl;
EmulatedCameraDevice.cpp 290 ALOGW_IF(mThreadControl >= 0 || mControlFD >= 0,
297 mThreadControl = thread_fds[1];
322 if (isRunning() && (mThreadControl < 0 || mControlFD < 0)) {
327 if (mThreadControl >= 0) {
331 TEMP_FAILURE_RETRY(write(mThreadControl, &msg, sizeof(msg)));
337 if (mThreadControl >= 0) {
338 close(mThreadControl);
339 mThreadControl = -1;

Completed in 303 milliseconds