HomeSort by relevance Sort by last modified time
    Searched refs:error_state (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/chromium_org/gpu/command_buffer/service/
error_state.h 21 // Use these macro to synthesize GL errors instead of calling the error_state
24 // Use to synthesize a GL error on the error_state.
25 #define ERRORSTATE_SET_GL_ERROR(error_state, error, function_name, msg) \
26 error_state->SetGLError(__FILE__, __LINE__, error, function_name, msg)
28 // Use to synthesize an INVALID_ENUM GL error on the error_state. Will attempt
31 error_state, function_name, value, label) \
32 error_state->SetGLErrorInvalidEnum( \
35 // Use to synthesize a GL error on the error_state for an invalid enum based
38 error_state, error, function_name, pname, param) \
39 error_state->SetGLErrorInvalidParami(
    [all...]
buffer_manager.cc 11 #include "gpu/command_buffer/service/error_state.h"
265 ErrorState* error_state = context_state->GetErrorState(); local
268 error_state, "glBufferData", target, "target");
273 error_state, "glBufferData", usage, "usage");
278 error_state, GL_INVALID_VALUE, "glBufferData", "size < 0");
285 error_state, GL_INVALID_VALUE, "glBufferData", "unknown buffer");
291 error_state, GL_OUT_OF_MEMORY, "glBufferData", "out of memory");
295 DoBufferData(error_state, buffer, size, usage, data);
300 ErrorState* error_state,
313 ERRORSTATE_COPY_REAL_GL_ERRORS_TO_WRAPPER(error_state, "glBufferData")
331 ErrorState* error_state = context_state->GetErrorState(); local
    [all...]
vertex_attrib_manager.cc 17 #include "gpu/command_buffer/service/error_state.h"
169 ErrorState* error_state = decoder->GetErrorState(); local
193 error_state, GL_INVALID_OPERATION, function_name,
238 error_state, GL_INVALID_OPERATION, function_name,
264 error_state, GL_INVALID_OPERATION, function_name,
vertex_attrib_manager_unittest.cc 137 MockErrorState error_state; local
154 gl_.get(), &error_state, &buffer_manager, buffer, 15, GL_STATIC_DRAW,
159 gl_.get(), &error_state, &buffer_manager, buffer, 16, GL_STATIC_DRAW,
168 gl_.get(), &error_state, &buffer_manager, buffer, 32, GL_STATIC_DRAW,
texture_manager.cc 14 #include "gpu/command_buffer/service/error_state.h"
1407 ErrorState* error_state = state->GetErrorState(); local
    [all...]
buffer_manager.h 243 ErrorState* error_state,
252 ErrorState* error_state,
test_helper.h 103 ::gfx::MockGLInterface* gl, MockErrorState* error_state,
108 ::gfx::MockGLInterface* gl, MockErrorState* error_state,
  /external/chromium_org/chrome/browser/chromeos/login/screens/
error_screen_actor.h 42 ErrorScreen::ErrorState error_state() const { return error_state_; } function in class:chromeos::ErrorScreenActor
74 virtual void SetErrorState(ErrorScreen::ErrorState error_state,
mock_error_screen.h 36 MOCK_METHOD2(SetErrorState, void(ErrorScreen::ErrorState error_state,
error_screen.h 86 // |error_state|, and |network|.
87 void SetErrorState(ErrorState error_state, const std::string& network);
error_screen.cc 133 void ErrorScreen::SetErrorState(ErrorState error_state,
136 actor_->SetErrorState(error_state, network);
  /external/chromium_org/extensions/browser/api/cast_channel/
cast_socket_unittest.cc 441 EXPECT_EQ(cast_channel::CHANNEL_ERROR_NONE, socket_->error_state());
447 EXPECT_EQ(cast_channel::CHANNEL_ERROR_NONE, socket_->error_state());
466 EXPECT_EQ(cast_channel::CHANNEL_ERROR_NONE, socket_->error_state());
490 EXPECT_EQ(cast_channel::CHANNEL_ERROR_NONE, socket_->error_state());
518 EXPECT_EQ(cast_channel::CHANNEL_ERROR_CONNECT_ERROR, socket_->error_state());
548 EXPECT_EQ(cast_channel::CHANNEL_ERROR_NONE, socket_->error_state());
570 EXPECT_EQ(cast_channel::CHANNEL_ERROR_NONE, socket_->error_state());
599 EXPECT_EQ(cast_channel::CHANNEL_ERROR_CONNECT_ERROR, socket_->error_state());
619 EXPECT_EQ(cast_channel::CHANNEL_ERROR_CONNECT_ERROR, socket_->error_state());
639 EXPECT_EQ(cast_channel::CHANNEL_ERROR_CONNECT_ERROR, socket_->error_state());
    [all...]
cast_socket.h 61 ChannelError error_state,
106 virtual ChannelError error_state() const;
237 void SetErrorState(ChannelError error_state);
cast_transport.h 74 ChannelError error_state,
169 void SetErrorState(ChannelError error_state);
cast_channel_api.cc 70 channel_info->error_state = socket.error_state();
73 // Fills |error_info| from |error_state| and |last_errors|.
74 void FillErrorInfo(ChannelError error_state,
77 error_info->error_state = error_state;
143 cast_channel::ChannelError error_state,
148 channel_info.error_state = error_state;
150 FillErrorInfo(error_state, last_errors, &error_info)
    [all...]
cast_channel_apitest.cc 90 MOCK_CONST_METHOD0(error_state, cast_channel::ChannelError());
120 EXPECT_CALL(*mock_cast_socket_, error_state())
233 EXPECT_CALL(*mock_cast_socket_, error_state())
286 EXPECT_CALL(*mock_cast_socket_, error_state())
  /external/chromium_org/mojo/examples/pepper_container_app/
graphics_3d_resource.cc 20 gpu::CommandBuffer::State error_state; local
21 error_state.error = gpu::error::kGenericError;
22 return error_state;
  /external/chromium_org/chrome/browser/signin/
signin_global_error_unittest.cc 95 GoogleServiceAuthError::State error_state; member in struct:__anon9318
121 GoogleServiceAuthError(table[i].error_state));
  /external/chromium_org/chrome/browser/chromeos/login/enrollment/
auto_enrollment_check_screen.h 82 void ShowErrorScreen(ErrorScreen::ErrorState error_state);
auto_enrollment_check_screen.cc 215 ErrorScreen::ErrorState error_state) {
221 error_screen->SetErrorState(error_state,
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
error_screen_handler.h 45 virtual void SetErrorState(ErrorScreen::ErrorState error_state,
  /external/chromium_org/content/common/gpu/
texture_image_transport_surface.cc 402 gpu::gles2::ErrorState* error_state = decoder->GetErrorState(); local
404 error_state,
409 error_state,
414 error_state,
419 error_state,
  /external/chromium_org/chrome/browser/sync/
sync_error_notifier_ash_unittest.cc 145 void VerifySyncErrorNotifierResult(GoogleServiceAuthError::State error_state,
151 GoogleServiceAuthError auth_error(error_state);
sync_global_error_unittest.cc 84 GoogleServiceAuthError::State error_state,
90 GoogleServiceAuthError auth_error(error_state);
  /external/chromium_org/chrome/browser/ui/webui/options/
create_profile_handler.h 136 GoogleServiceAuthError::State error_state);

Completed in 297 milliseconds

1 2 3