Searched refs:next_result (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/net/socket/
H A Dssl_client_socket_openssl.cc1343 // If no data was read, |*next_result| will point to the return value of
1344 // this function. If at least some data was read, |*next_result| will point
1347 int *next_result = &rv;
1351 next_result = &pending_read_error_;
1355 *next_result = ERR_SSL_CLIENT_AUTH_CERT_NEEDED;
1356 } else if (*next_result < 0) {
1357 int err = SSL_get_error(ssl_, *next_result);
1358 *next_result = MapOpenSSLError(err, err_tracer);
1365 if (*next_result == ERR_CONNECTION_CLOSED)
1366 *next_result
[all...]
H A Dssl_client_socket_nss.cc1921 // If no data was read, |*next_result| will point to the return value of
1922 // this function. If at least some data was read, |*next_result| will point
1925 int* next_result = &rv; local
1929 next_result = &pending_read_result_;
1933 *next_result = ERR_SSL_CLIENT_AUTH_CERT_NEEDED;
1935 } else if (*next_result < 0) {
1936 // If *next_result == 0, then that indicates EOF, and no special error
1939 *next_result = HandleNSSError(pending_read_nss_error_);
1940 if (rv > 0 && *next_result == ERR_IO_PENDING) {
/external/chromium_org/v8/src/
H A Dast.h969 Expression* next_result,
974 next_result_ = next_result;
989 Expression* next_result() const { function in class:v8::internal::FINAL
965 Initialize(Expression* each, Expression* subject, Statement* body, Expression* assign_iterator, Expression* next_result, Expression* result_done, Expression* assign_each) argument
H A Dparser.cc2882 Expression* next_result; local
2903 next_result = factory()->NewAssignment(
2929 next_result,
/external/chromium_org/v8/src/arm/
H A Dfull-codegen-arm.cc1297 VisitForEffect(stmt->next_result());
/external/chromium_org/v8/src/arm64/
H A Dfull-codegen-arm64.cc1283 VisitForEffect(stmt->next_result());
/external/chromium_org/v8/src/ia32/
H A Dfull-codegen-ia32.cc1219 VisitForEffect(stmt->next_result());
/external/chromium_org/v8/src/mips/
H A Dfull-codegen-mips.cc1284 VisitForEffect(stmt->next_result());
/external/chromium_org/v8/src/mips64/
H A Dfull-codegen-mips64.cc1279 VisitForEffect(stmt->next_result());
/external/chromium_org/v8/src/x64/
H A Dfull-codegen-x64.cc1253 VisitForEffect(stmt->next_result());
/external/chromium_org/v8/src/x87/
H A Dfull-codegen-x87.cc1208 VisitForEffect(stmt->next_result());

Completed in 2401 milliseconds