Searched refs:errno (Results 101 - 125 of 176) sorted by relevance

12345678

/frameworks/native/libs/ui/
H A DGraphicBufferMapper.cpp21 #include <errno.h>
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp20 #include <errno.h>
576 ALOGE("epoll_create: %s", strerror(errno));
586 ALOGE("socketpair: %s", strerror(errno));
605 ALOGE("setsockopt: %s", strerror(errno));
614 ALOGE("epoll_ctl: %s", strerror(errno));
678 ALOGE("epoll_ctl: %s", strerror(errno));
701 ALOGE("epoll_ctl: %s", strerror(errno));
751 ALOGE("epoll_wait: %s", strerror(errno));
1060 ALOGE("urandom: %s", strerror(errno));
/frameworks/native/cmds/servicemanager/
H A Dservice_manager.c6 #include <errno.h>
280 ALOGE("cannot become context manager (%s)\n", strerror(errno));
/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp31 #include <errno.h>
528 ALOGW("dup(%d) failed: %s\n", origFd, strerror(errno));
535 ALOGW("fdopen(%d) failed: %s\n", fd, strerror(errno));
565 fprintf(stderr, "Can't open %s: %s\n", fileName8.string(), strerror(errno));
570 fprintf(stderr, "lseek: %s\n", strerror(errno));
H A Dandroid_net_TrafficStats.cpp20 #include <errno.h>
H A Dandroid_database_SQLiteConnection.cpp519 error = errno;
525 error = errno;
535 error = errno;
536 ALOGE("ashmem_set_prot_region failed: %s", strerror(errno));
H A Dandroid_hardware_UsbDeviceConnection.cpp118 if (ret && force && errno == EBUSY) {
/frameworks/native/libs/utils/
H A DThreads.cpp29 #include <errno.h>
174 errno = 0;
180 ALOGE("androidCreateRawThreadEtc failed (entry=%p, res=%d, errno=%d)\n"
182 entryFunction, result, errno, threadPriority);
357 lasterr = errno;
363 errno = lasterr;
/frameworks/base/tools/aapt/
H A DZipFile.cpp33 #include <errno.h>
98 int err = errno;
386 return errnoToStatus(errno);
656 return errnoToStatus(errno);
811 ALOGD("deflate read failed (errno=%d)\n", errno);
934 ALOGW("ftruncate failed %ld: %s\n", ftell(mZipFp), strerror(errno));
1132 ALOGD("didn't work, errno=%d\n", errno);
H A DStringPool.h22 #include <errno.h>
H A DPackage.cpp19 #include <errno.h>
81 strerror(errno));
/frameworks/av/libvideoeditor/osal/src/
H A DM4OSA_FileCommon.c34 #include <errno.h>
182 switch(errno)
435 switch(errno)
/frameworks/av/media/libstagefright/
H A DFileSource.cpp42 ALOGE("Failed to open file '%s'. (%s)", filename, strerror(errno));
H A DMediaBuffer.cpp20 #include <errno.h>
/frameworks/base/libs/androidfw/tests/
H A DInputChannel_test.cpp24 #include <errno.h>
/frameworks/native/cmds/installd/
H A Dinstalld.h29 #include <errno.h>
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DFramebufferSurface.cpp21 #include <errno.h>
/frameworks/native/services/surfaceflinger/
H A DMessageQueue.cpp18 #include <errno.h>
/frameworks/compile/libbcc/bcinfo/tools/
H A Dmain.cpp40 #include <errno.h>
227 fprintf(stderr, "Unable to stat input file: %s\n", strerror(errno));
/frameworks/compile/libbcc/tests/data/src/
H A Dotcc-ansi.c2 extern int stdin, stderr, errno;
461 printf("Mprotect failed. %d\n", errno);
/frameworks/av/media/libstagefright/rtsp/
H A DARTPConnection.cpp348 } while (n < 0 && errno == EINTR);
352 n == 0 ? "connection gone" : strerror(errno));
392 } while (nbytes < 0 && errno == EINTR);
/frameworks/base/tools/orientationplot/
H A Dorientationplot.py29 import errno namespace
59 if e.errno == errno.EAGAIN:
/frameworks/native/libs/binder/
H A DIMemory.cpp304 parcel_fd, size, err, strerror(errno));
317 asBinder().get(), size, fd, strerror(errno));
H A DMemoryDealer.cpp33 #include <errno.h>
214 start_ptr, size, err<0 ? strerror(errno) : "Ok");
/frameworks/av/media/libmediaplayerservice/
H A DMetadataRetrieverClient.cpp142 ALOGE("fstat(%d) failed: %d, %s", fd, ret, strerror(errno));

Completed in 2591 milliseconds

12345678