Searched defs:stat (Results 1 - 5 of 5) sorted by relevance

/device/generic/goldfish/opengl/shared/OpenglCodecCommon/
H A DSocketStream.cpp99 ssize_t stat = ::send(m_sock, (const char *)buffer + (size - res), res, 0); local
100 if (stat < 0) {
102 retval = stat;
107 res -= stat;
122 ssize_t stat = ::recv(m_sock, (char *)(buf) + len - res, res, 0); local
123 if (stat > 0) {
124 res -= stat;
127 if (stat == 0 || errno != EINTR) { // client shutdown or error
/device/generic/goldfish/opengl/system/OpenglSystemCommon/
H A DQemuPipeStream.cpp99 ssize_t stat = ::write(m_sock, (const char *)(buf) + (len - res), res); local
100 if (stat > 0) {
101 res -= stat;
104 if (stat == 0) { /* EOF */
112 retval = stat;
130 ssize_t stat = ::read(m_sock, (char *)(buf) + len - res, len); local
131 if (stat == 0) {
134 } else if (stat < 0) {
143 res -= stat;
/device/asus/flo/camera/QCamera2/HAL/test/
H A Dqcamera_test.cpp38 #include <sys/stat.h>
855 status_t stat = NO_ERROR; local
875 stat = currentCamera->resumePreview();
881 stat = currentCamera->startPreview();
887 stat = currentCamera->stopPreview();
893 stat = currentCamera->nextPreviewSize();
899 stat = currentCamera->nextPictureSize();
911 stat = currentCamera->autoFocus();
917 stat = currentCamera->takePicture();
923 stat
960 status_t stat = camera->openCamera(); local
[all...]
/device/lge/hammerhead/camera/QCamera2/HAL/test/
H A Dqcamera_test.cpp38 #include <sys/stat.h>
855 status_t stat = NO_ERROR; local
875 stat = currentCamera->resumePreview();
881 stat = currentCamera->startPreview();
887 stat = currentCamera->stopPreview();
893 stat = currentCamera->nextPreviewSize();
899 stat = currentCamera->nextPictureSize();
911 stat = currentCamera->autoFocus();
917 stat = currentCamera->takePicture();
923 stat
960 status_t stat = camera->openCamera(); local
[all...]
/device/moto/shamu/camera/QCamera2/HAL/test/
H A Dqcamera_test.cpp38 #include <sys/stat.h>
3121 status_t stat = camera->openCamera(); local
3122 if ( NO_ERROR != stat ) {
3227 status_t stat = NO_ERROR; local
3257 stat = currentCamera->resumePreview();
3263 stat = currentCamera->startPreview();
3269 stat = currentCamera->stopPreview();
3276 stat = currentCamera->setVideoSize(command.arg);
3278 stat = currentCamera->nextVideoSize();
3285 stat
[all...]

Completed in 124 milliseconds