Searched defs:errno (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/net/metrics/
H A DConnectStats.java39 /** How many events resulted in a given errno. */
63 boolean addEvent(int errno, int latencyMs, String ipAddr) { argument
65 if (isSuccess(errno)) {
66 countConnect(errno, ipAddr);
67 countLatency(errno, latencyMs);
70 countError(errno);
75 private void countConnect(int errno, String ipAddr) { argument
77 if (!isNonBlocking(errno)) {
85 private void countLatency(int errno, int ms) { argument
86 if (isNonBlocking(errno)) {
101 countError(int errno) argument
106 isSuccess(int errno) argument
110 isNonBlocking(int errno) argument
[all...]
/frameworks/base/tools/orientationplot/
H A Dorientationplot.py29 import errno namespace
59 if e.errno == errno.EAGAIN:
/frameworks/base/tools/velocityplot/
H A Dvelocityplot.py33 import errno namespace
63 if e.errno == errno.EAGAIN:
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
H A DSmsSessionEventBuilder.java52 public SmsSessionEventBuilder setRilErrno(int errno) { argument
53 mEvent.error = errno;
H A DTelephonyEventBuilder.java98 public TelephonyEventBuilder setDeactivateDataCallResponse(int errno) { argument
100 mEvent.error = errno;
/frameworks/native/libs/vr/libpdx_uds/
H A Dservice_endpoint.cpp156 << strerror(errno); variable
166 CHECK_EQ(ret, 0) << "Endpoint::Endpoint: bind error: " << strerror(errno); variable
176 << "Endpoint::Endpoint: listen error: " << strerror(errno);
180 << "Endpoint::Endpoint: Failed to create event fd: " << strerror(errno);
184 << "Endpoint::Endpoint: Failed to create epoll fd: " << strerror(errno);
194 << strerror(errno);
205 << strerror(errno);
226 strerror(errno));
227 return ErrorStatus(errno);
289 strerror(errno));
[all...]

Completed in 633 milliseconds