Searched refs:errno (Results 176 - 200 of 220) sorted by path

123456789

/frameworks/native/libs/binder/tests/
H A DbinderLibTest.cpp17 #include <errno.h>
89 status = -errno;
91 fprintf(stderr, "execv failed, %s\n", strerror(errno));
890 while (wait(NULL) != -1 || errno != ECHILD)
/frameworks/native/libs/gui/
H A DBitTube.cpp55 mReceiveFd = -errno;
84 mReceiveFd = -errno;
113 err = len < 0 ? errno : 0;
123 err = len < 0 ? errno : 0;
H A DGLConsumer.cpp1008 GLC_LOGE("doGLFenceWait: error dup'ing fence fd: %d", errno);
1009 return -errno;
H A DSensorEventQueue.cpp23 #include <linux/errno.h>
105 ALOGE("SensorEventQueue::waitForEvent error (errno=%d)", errno);
164 } else if (size < 0 && errno == EAGAIN) {
169 ALOGE("injectSensorEvent failure %s %zd", strerror(errno), size);
H A DSurface.cpp295 ALOGE("dequeueBuffer: error duping fence: %d", errno);
H A DSurfaceControl.cpp20 #include <errno.h>
/frameworks/native/libs/input/
H A DInputTransport.cpp23 #include <errno.h>
112 "non-blocking. errno=%d", mName.string(), errno);
128 status_t result = -errno;
129 ALOGE("channel '%s' ~ Could not create socket pair. errno=%d",
130 name.string(), errno);
157 } while (nWrite == -1 && errno == EINTR);
160 int error = errno;
162 ALOGD("channel '%s' ~ error sending message of type %d, errno=%d", mName.string(),
192 } while (nRead == -1 && errno
[all...]
/frameworks/native/libs/input/tests/
H A DInputChannel_test.cpp21 #include <errno.h>
H A DTestHelpers.h51 return nWritten == 1 ? 0 : -errno;
57 return nRead == 1 ? 0 : nRead == 0 ? -EPIPE : -errno;
/frameworks/native/libs/ui/
H A DFence.cpp57 return err < 0 ? -errno : status_t(NO_ERROR);
67 if (err < 0 && errno == ETIME) {
72 return err < 0 ? -errno : status_t(NO_ERROR);
92 status_t err = -errno;
H A DGraphicBufferMapper.cpp21 #include <errno.h>
/frameworks/native/opengl/libagl/
H A Degl.cpp20 #include <errno.h>
/frameworks/native/opengl/libs/EGL/
H A DLoader.cpp21 #include <errno.h>
H A DLoader.h22 #include <errno.h>
H A Degl_cache.cpp228 if (errno == EEXIST) {
233 strerror(errno), errno);
241 strerror(errno), errno);
251 strerror(errno), errno);
273 ALOGE("error writing cache file: %s (%d)", strerror(errno),
274 errno);
293 if (errno !
[all...]
H A DgetProcAddress.cpp19 #include <errno.h>
/frameworks/native/opengl/libs/GLES2/
H A Dgl2.cpp19 #include <errno.h>
/frameworks/native/opengl/libs/GLES_CM/
H A Dgl.cpp19 #include <errno.h>
/frameworks/native/opengl/libs/
H A Dhooks.h22 #include <errno.h>
/frameworks/native/opengl/tests/hwc/
H A DhwcTestLib.cpp146 errno = -rv;
152 errno = -rv;
/frameworks/native/services/inputflinger/
H A DEventHub.cpp19 #include <errno.h>
100 ALOGE("Could not get linux version: %s", strerror(errno));
193 LOG_ALWAYS_FATAL_IF(mEpollFd < 0, "Could not create epoll instance. errno=%d", errno);
197 LOG_ALWAYS_FATAL_IF(result < 0, "Could not register INotify for %s. errno=%d",
198 DEVICE_PATH, errno);
205 LOG_ALWAYS_FATAL_IF(result != 0, "Could not add INotify to epoll instance. errno=%d", errno);
209 LOG_ALWAYS_FATAL_IF(result != 0, "Could not create wake pipe. errno=%d", errno);
[all...]
H A DInputDispatcher.cpp55 #include <errno.h>
H A DInputReader.cpp55 #include <errno.h>
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DFramebufferSurface.cpp25 #include <errno.h>
H A DHWComposer_hwc1.cpp1310 } while (err<0 && errno == EINTR);

Completed in 396 milliseconds

123456789