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

1 2 3 4 5

  /external/chromium_org/gpu/command_buffer/service/
error_state.h 19 // Use these macro to synthesize GL errors instead of calling the error_state
22 // Use to synthesize a GL error on the error_state.
23 #define ERRORSTATE_SET_GL_ERROR(error_state, error, function_name, msg) \
24 error_state->SetGLError(__FILE__, __LINE__, error, function_name, msg)
26 // Use to synthesize an INVALID_ENUM GL error on the error_state. Will attempt
29 error_state, function_name, value, label) \
30 error_state->SetGLErrorInvalidEnum( \
33 // Use to synthesize a GL error on the error_state for an invalid enum based
36 error_state, error, function_name, pname, param) \
37 error_state->SetGLErrorInvalidParam(
    [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 18 #include "gpu/command_buffer/service/error_state.h"
170 ErrorState* error_state = decoder->GetErrorState(); local
192 error_state, GL_INVALID_OPERATION, function_name,
237 error_state, GL_INVALID_OPERATION, function_name,
259 error_state, GL_INVALID_OPERATION, function_name,
error_state_mock.h 10 #include "gpu/command_buffer/service/error_state.h"
vertex_attrib_manager_unittest.cc 145 MockErrorState error_state; local
162 gl_.get(), &error_state, &buffer_manager, buffer, 15, GL_STATIC_DRAW,
167 gl_.get(), &error_state, &buffer_manager, buffer, 16, GL_STATIC_DRAW,
176 gl_.get(), &error_state, &buffer_manager, buffer, 32, GL_STATIC_DRAW,
test_helper.cc 495 ::gfx::MockGLInterface* gl, MockErrorState* error_state,
498 EXPECT_CALL(*error_state, CopyRealGLErrorsToWrapper(_, _, _))
512 EXPECT_CALL(*error_state, PeekGLError(_, _, _))
515 manager->DoBufferData(error_state, buffer, size, usage, data);
519 ::gfx::MockGLInterface* gl, MockErrorState* error_state,
530 EXPECT_CALL(*error_state, SetGLErrorInvalidEnum(_, _, _, value, _))
534 EXPECT_CALL(*error_state, SetGLErrorInvalidParam(_, _, error, _, _, _))
538 manager->SetParameter("", error_state, texture_ref, pname, value);
test_helper.h 95 ::gfx::MockGLInterface* gl, MockErrorState* error_state,
100 ::gfx::MockGLInterface* gl, MockErrorState* error_state,
context_state.cc 9 #include "gpu/command_buffer/service/error_state.h"
error_state.cc 5 #include "gpu/command_buffer/service/error_state.h"
  /external/chromium_org/chrome/browser/resources/chromeos/login/
screen_error_message.js 31 /** @const */ var ERROR_STATE = {
42 ERROR_STATE.UNKNOWN,
43 ERROR_STATE.PORTAL,
44 ERROR_STATE.OFFLINE,
45 ERROR_STATE.PROXY,
46 ERROR_STATE.AUTH_EXT_TIMEOUT
64 error_state_: ERROR_STATE.UNKNOWN,
163 * @param {string} error_state New error state of the screen.
167 setErrorState_: function(error_state, network) {
168 this.classList.remove(this.error_state);
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/screens/
error_screen.cc 60 void ErrorScreen::SetErrorState(ErrorState error_state,
63 actor_->SetErrorState(error_state, network);
error_screen.h 59 // |error_state|, and |network|.
60 void SetErrorState(ErrorState error_state, const std::string& network);
mock_error_screen.h 32 MOCK_METHOD2(SetErrorState, void(ErrorScreen::ErrorState error_state,
error_screen_actor.h 39 ErrorScreen::ErrorState error_state() const { return error_state_; } function in class:chromeos::ErrorScreenActor
63 virtual void SetErrorState(ErrorScreen::ErrorState error_state,
  /external/chromium_org/google_apis/gaia/
oauth2_api_call_flow.cc 73 state_ = ERROR_STATE;
83 state_ = ERROR_STATE;
93 state_ = ERROR_STATE;
123 state_ = ERROR_STATE;
oauth2_access_token_fetcher.h 74 ERROR_STATE,
oauth2_api_call_flow.h 86 ERROR_STATE
  /external/chromium_org/chrome/browser/signin/
signin_global_error_unittest.cc 95 GoogleServiceAuthError::State error_state; member in struct:__anon8139
119 provider.SetAuthError(GoogleServiceAuthError(table[i].error_state));
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
error_screen_handler.cc 101 void ErrorScreenHandler::SetErrorState(ErrorScreen::ErrorState error_state,
103 error_state_ = error_state;
error_screen_handler.h 41 virtual void SetErrorState(ErrorScreen::ErrorState error_state,
  /external/chromium_org/chrome/browser/sync/
sync_global_error_unittest.cc 103 GoogleServiceAuthError::State error_state,
109 GoogleServiceAuthError auth_error(error_state);
136 if (error_state != GoogleServiceAuthError::NONE) {
  /external/chromium_org/content/common/gpu/
texture_image_transport_surface.cc 417 gpu::gles2::ErrorState* error_state = decoder->GetErrorState(); local
419 error_state,
424 error_state,
429 error_state,
434 error_state,
  /external/chromium_org/gpu/
command_buffer_service.gypi 58 'command_buffer/service/error_state.cc',
59 'command_buffer/service/error_state.h',
  /external/chromium_org/ppapi/proxy/
ppb_graphics_3d_proxy.cc 49 gpu::CommandBuffer::State error_state; local
50 error_state.error = gpu::error::kGenericError;
51 return error_state;
  /packages/apps/Mms/src/com/android/mms/
LogTag.java 118 .setTitle(R.string.error_state)

Completed in 517 milliseconds

1 2 3 4 5