Searched refs:error_state (Results 1 - 25 of 53) sorted by relevance

123

/external/chromium_org/gpu/command_buffer/service/
H A Derror_state.h21 // 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
[all...]
H A Dbuffer_manager.cc11 #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, "glBufferDat
299 DoBufferData( ErrorState* error_state, Buffer* buffer, GLsizeiptr size, GLenum usage, const GLvoid* data) argument
331 ErrorState* error_state = context_state->GetErrorState(); local
342 DoBufferSubData( ErrorState* error_state, Buffer* buffer, GLintptr offset, GLsizeiptr size, const GLvoid* data) argument
[all...]
H A Dvertex_attrib_manager.cc17 #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,
H A Dvertex_attrib_manager_unittest.cc137 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,
H A Dtexture_manager.cc14 #include "gpu/command_buffer/service/error_state.h"
1102 const char* function_name, ErrorState* error_state,
1104 DCHECK(error_state);
1111 error_state, function_name, param, "param");
1114 error_state, result, function_name, pname, param);
1126 const char* function_name, ErrorState* error_state,
1128 DCHECK(error_state);
1135 error_state, function_name, param, "param");
1138 error_state, result, function_name, pname, param);
1314 ErrorState* error_state, cons
1101 SetParameteri( const char* function_name, ErrorState* error_state, TextureRef* ref, GLenum pname, GLint param) argument
1125 SetParameterf( const char* function_name, ErrorState* error_state, TextureRef* ref, GLenum pname, GLfloat param) argument
1313 ValidateFormatAndTypeCombination( ErrorState* error_state, const char* function_name, GLenum format, GLenum type) argument
1327 ValidateTextureParameters( ErrorState* error_state, const char* function_name, GLenum format, GLenum type, GLenum internal_format, GLint level) argument
1407 ErrorState* error_state = state->GetErrorState(); local
1479 DoTexImage2D( DecoderTextureState* texture_state, ErrorState* error_state, DecoderFramebufferState* framebuffer_state, TextureRef* texture_ref, const DoTextImage2DArguments& args) argument
[all...]
H A Dtest_helper.h103 ::gfx::MockGLInterface* gl, MockErrorState* error_state,
108 ::gfx::MockGLInterface* gl, MockErrorState* error_state,
/external/chromium_org/chrome/browser/chromeos/login/screens/
H A Derror_screen_actor.h42 ErrorScreen::ErrorState error_state() const { return error_state_; } function in class:chromeos::ErrorScreenActor
74 virtual void SetErrorState(ErrorScreen::ErrorState error_state,
H A Dmock_error_screen.h36 MOCK_METHOD2(SetErrorState, void(ErrorScreen::ErrorState error_state,
H A Derror_screen.cc133 void ErrorScreen::SetErrorState(ErrorState error_state, argument
136 actor_->SetErrorState(error_state, network);
H A Derror_screen.h86 // |error_state|, and |network|.
87 void SetErrorState(ErrorState error_state, const std::string& network);
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dscreen_error_message.js292 * @param {string} error_state New error state of the screen.
296 setErrorState_: function(error_state, network) {
297 this.classList.remove(this.error_state);
302 this.error_state = error_state;
303 this.classList.add(this.error_state);
353 * @param {number} error_state New error state of the screen.
357 setErrorState: function(error_state, network) {
358 this.setErrorState_(ERROR_STATES[error_state], network);
/external/chromium_org/extensions/browser/api/cast_channel/
H A Dcast_socket_unittest.cc441 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...]
H A Dcast_transport.h74 ChannelError error_state,
169 void SetErrorState(ChannelError error_state);
H A Dcast_channel_api.cc70 channel_info->error_state = socket.error_state();
73 // Fills |error_info| from |error_state| and |last_errors|.
74 void FillErrorInfo(ChannelError error_state, argument
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_error
142 OnError(const CastSocket* socket, cast_channel::ChannelError error_state, const cast_channel::LastErrors& last_errors) argument
[all...]
H A Dcast_channel_apitest.cc90 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/
H A Dgraphics_3d_resource.cc20 gpu::CommandBuffer::State error_state; local
21 error_state.error = gpu::error::kGenericError;
22 return error_state;
/external/chromium_org/chrome/browser/signin/
H A Dsignin_global_error_unittest.cc95 GoogleServiceAuthError::State error_state; member in struct:__anon4693
121 GoogleServiceAuthError(table[i].error_state));
/external/chromium_org/chrome/browser/chromeos/login/enrollment/
H A Dauto_enrollment_check_screen.h82 void ShowErrorScreen(ErrorScreen::ErrorState error_state);
H A Dauto_enrollment_check_screen.cc215 ErrorScreen::ErrorState error_state) {
221 error_screen->SetErrorState(error_state,
214 ShowErrorScreen( ErrorScreen::ErrorState error_state) argument
/external/chromium_org/content/common/gpu/
H A Dtexture_image_transport_surface.cc402 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/
H A Dsync_error_notifier_ash_unittest.cc145 void VerifySyncErrorNotifierResult(GoogleServiceAuthError::State error_state, argument
151 GoogleServiceAuthError auth_error(error_state);
H A Dsync_global_error_unittest.cc84 GoogleServiceAuthError::State error_state,
90 GoogleServiceAuthError auth_error(error_state);
79 VerifySyncGlobalErrorResult(NiceMock<ProfileSyncServiceMock>* service, FakeLoginUIService* login_ui_service, Browser* browser, SyncErrorController* error, SyncGlobalError* global_error, GoogleServiceAuthError::State error_state, bool is_signed_in, bool is_error) argument
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/
H A Derror_screen_handler.h45 virtual void SetErrorState(ErrorScreen::ErrorState error_state,
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dcreate_profile_handler.h136 GoogleServiceAuthError::State error_state);
/external/chromium_org/components/signin/core/browser/
H A Dsignin_error_controller_unittest.cc147 GoogleServiceAuthError::State error_state; member in struct:__anon6823
173 GoogleServiceAuthError(table[i].error_state));
178 EXPECT_EQ(table[i].error_state,

Completed in 297 milliseconds

123