Home | History | Annotate | Download | only in bluetooth

Lines Matching defs:read_result

184   int read_result =
193 if (read_result != net::ERR_IO_PENDING)
194 OnSocketReadComplete(success_callback, error_callback, read_result);
200 int read_result) {
206 if (read_result > 0) {
207 success_callback.Run(read_result, buffer);
208 } else if (read_result == net::OK ||
209 read_result == net::ERR_CONNECTION_CLOSED ||
210 read_result == net::ERR_CONNECTION_RESET) {
212 net::ErrorToString(read_result));
215 net::ErrorToString(read_result));