Home | History | Annotate | Download | only in camera

Lines Matching defs:msg

313         const ControlMessage msg = THREAD_STOP;
315 TEMP_FAILURE_RETRY(write(mThreadControl, &msg, sizeof(msg)));
316 if (wres == sizeof(msg)) {
374 ControlMessage msg;
375 res = TEMP_FAILURE_RETRY(read(mControlFD, &msg, sizeof(msg)));
376 if (res != sizeof(msg)) {
382 if (msg == THREAD_STOP) {
386 ALOGE("Unknown worker thread message %d", msg);