Home | History | Annotate | Download | only in adb

Lines Matching defs:ERROR

172 int network_inaddr_any_server(int port, int type, std::string* error);
174 inline int network_local_client(const char* name, int namespace_id, int type, std::string* error) {
178 inline int network_local_server(const char* name, int namespace_id, int type, std::string* error) {
183 std::string* error);
249 // macro technique and instead cause a link error if seekdir is called.
498 inline int _fd_set_error_str(int fd, std::string* error) {
500 *error = strerror(errno);
505 inline int network_inaddr_any_server(int port, int type, std::string* error) {
506 return _fd_set_error_str(socket_inaddr_any_server(port, type), error);
509 inline int network_local_client(const char* name, int namespace_id, int type, std::string* error) {
510 return _fd_set_error_str(socket_local_client(name, namespace_id, type), error);
513 inline int network_local_server(const char* name, int namespace_id, int type, std::string* error) {
514 return _fd_set_error_str(socket_local_server(name, namespace_id, type), error);
518 int timeout, std::string* error) {
526 *error = gai_strerror(getaddrinfo_error);
528 *error = strerror(errno);
642 // Win32 defines ERROR, which we don't need, but which conflicts with google3 logging.
643 #undef ERROR