Searched refs:stat (Results 1 - 9 of 9) sorted by relevance
/sdk/emulator/opengl/tests/ut_renderer/ |
H A D | ReadBuffer.cpp | 41 int stat = m_stream->recv(m_buf + m_validData, m_size - m_validData); local 42 if (stat > 0) { 43 m_validData += (size_t) stat; 45 return stat;
|
H A D | RenderingThread.cpp | 331 int stat = readBuf.getData(); local 332 if (stat == 0) { 335 } else if (stat < 0) {
|
/sdk/emulator/opengl/shared/OpenglCodecCommon/ |
H A D | SocketStream.cpp | 99 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
|
H A D | UnixStream.cpp | 27 #include <sys/stat.h> 59 struct stat st;
|
/sdk/emulator/opengl/tests/emulator_test_renderer/ |
H A D | main.cpp | 154 bool stat = destroyOpenGLSubwindow(); local 155 printf("destroy subwin returned %d\n", stat); 156 stat = createOpenGLSubwindow(windowId, 161 printf("create subwin returned %d\n", stat); 167 bool stat = destroyOpenGLSubwindow(); local 168 printf("destroy subwin returned %d\n", stat); 169 stat = createOpenGLSubwindow(windowId, 174 printf("create subwin returned %d\n", stat);
|
/sdk/emulator/opengl/host/libs/libOpenglRender/ |
H A D | RenderThread.cpp | 79 int stat = readBuf.getData(); local 80 if (stat <= 0) { 100 int skip = readBuf.validData() - stat;
|
/sdk/emulator/opengl/host/include/libOpenglRender/ |
H A D | IOStream.h | 75 int stat = commitBuffer(m_bufsize - m_free); 78 return stat;
|
/sdk/emulator/qtools/ |
H A D | trace_reader.cpp | 11 #include <sys/stat.h> 315 struct stat stat_buf; 322 int rval = stat(fname, &stat_buf); 566 struct stat stat_buf; 574 int rval = stat(fname, &stat_buf); 845 struct stat stat_buf; 866 int rval = stat(fname, &stat_buf);
|
/sdk/emulator/opengl/host/libs/Translator/EGL/ |
H A D | EglImp.cpp | 23 #include <sys/stat.h>
|
Completed in 107 milliseconds