HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 626 - 650 of 2948) sorted by null

<<21222324252627282930>>

  /external/chromium_org/gpu/command_buffer/service/
error_state.cc 27 unsigned int error,
39 unsigned int error,
54 // The last error message set.
56 // Current GL error bits.
79 // Check the GL error first, then our wrapped error.
80 GLenum error = glGetError(); local
81 if (error == GL_NO_ERROR && error_bits_ != 0) {
84 error = GLES2Util::GLErrorBitToGLError(mask);
90 if (error != GL_NO_ERROR)
99 GLenum error = glGetError(); local
157 GLenum error; local
167 GLenum error; local
    [all...]
  /external/chromium_org/jingle/notifier/base/
xmpp_connection.cc 114 buzz::XmppEngine::Error error = local
121 delegate->OnError(error, subcode, stream_error);
  /external/chromium_org/media/audio/alsa/
alsa_util.cc 22 int error = wrapper->PcmOpen(&handle, device_name, type, SND_PCM_NONBLOCK); local
23 if (error < 0) {
25 << wrapper->StrError(error);
29 error = wrapper->PcmSetParams(handle, pcm_format,
32 if (error < 0) {
34 << wrapper->StrError(error) << " - Format: " << pcm_format
86 int error = wrapper->PcmClose(handle); local
87 if (error < 0) {
88 LOG(ERROR) << "PcmClose: " << device_name << ", "
89 << wrapper->StrError(error);
119 int error = wrapper->MixerOpen(&mixer, 0); local
153 int error = 0; local
174 int error = wrapper->MixerLoad(mixer); local
    [all...]
  /external/chromium_org/media/base/
multi_channel_resampler_unittest.cc 24 // Low latency buffers show a larger error than high latency ones. Which makes
25 // sense since each error represents a larger portion of the total request.
96 // Calculate Root-Mean-Square-Error for the resampling.
104 double error = fabs(audio_bus_->channel(i)[j] - kFillValue); local
105 max_error = std::max(max_error, error);
106 sum_of_squares += error * error;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_handle.cc 39 Error KernelHandle::Init(int open_flags) {
47 Error error = node_->GetSize(&handle_attr_.offs); local
48 if (error)
49 return error;
55 Error KernelHandle::Seek(off_t offset, int whence, off_t* out_offset) {
62 Error error = node_->GetSize(&node_size); local
63 if (error)
64 return error;
119 Error error = node_->GetDents(handle_attr_.offs, pdir, nbytes, cnt); local
    [all...]
kernel_object.cc 33 Error KernelObject::AttachMountAtPath(const ScopedMount& mnt,
45 Error KernelObject::DetachMountAtPath(const std::string& path) {
63 Error KernelObject::AcquireMountAndRelPath(const std::string& path,
91 Error KernelObject::AcquireMountAndNode(const std::string& path,
98 Error error = AcquireMountAndRelPath(path, out_mount, &rel_parts); local
99 if (error)
100 return error;
102 error = (*out_mount)->Open(rel_parts, oflags, out_node);
103 if (error)
136 Error error = AcquireMountAndNode(abs_path, O_RDONLY, &mnt, &node); local
    [all...]
mount_html5fs.cc 29 Error MountHtml5Fs::Access(const Path& path, int a_mode) {
35 Error MountHtml5Fs::Open(const Path& path,
39 Error error = BlockUntilFilesystemOpen(); local
40 if (error)
41 return error;
49 error = node->Init(open_flags);
50 if (error)
51 return error;
57 Error MountHtml5Fs::Unlink(const Path& path) { return Remove(path);
60 Error error = BlockUntilFilesystemOpen(); local
87 Error error = BlockUntilFilesystemOpen(); local
107 Error error = BlockUntilFilesystemOpen(); local
127 Error error = Mount::Init(args); local
    [all...]
mount_mem.cc 26 Error MountMem::Init(const MountInitArgs& args) {
27 Error error = Mount::Init(args); local
28 if (error)
29 return error;
32 error = root_->Init(0);
33 if (error) {
35 return error;
40 Error MountMem::FindNode(const Path& path,
46 // If there is no root there, we have an error
81 Error error = FindNode(path, 0, &node); local
101 Error error = FindNode(path, 0, &node); local
152 int error = FindNode(path.Parent(), S_IFDIR, &parent); local
192 int error = FindNode(src_path, 0, &src_node); local
272 int error = FindNode(path.Parent(), S_IFDIR, &parent); local
    [all...]
mount_passthrough.cc 20 virtual Error Init(int flags) { return 0; }
30 virtual Error Read(const HandleAttr& attr,
50 virtual Error Write(const HandleAttr& attr,
70 virtual Error FTruncate(off_t size) {
75 virtual Error GetDents(size_t offs,
86 virtual Error GetStat(struct stat* stat) {
93 Error MMap(void* addr,
114 Error MountPassthrough::Init(const MountInitArgs& args) {
120 Error MountPassthrough::Access(const Path& path, int a_mode) {
125 Error MountPassthrough::Open(const Path& path
130 int error = _real_open(path.Join().c_str(), mode, 0666, &real_fd); local
142 int error = _real_open_resource(path.Join().c_str(), &real_fd); local
    [all...]
  /external/chromium_org/net/cert/
multi_threaded_cert_verifier.h 103 int error; // The return value of CertVerifier::Verify. member in struct:net::MultiThreadedCertVerifier::CachedResult
136 int error,
  /external/chromium_org/net/disk_cache/simple/
simple_version_upgrade.cc 28 LOG(ERROR) << "Failed to upgrade Simple Cache from version: " << version;
32 base::PlatformFileError error; local
37 &error);
46 LOG(ERROR) << "Failed to write fake index file: "
114 // return an initialization error here and proceed with asynchronous cache
134 // 1. Absence of the index is itself not a fatal error in the Simple Backend
138 base::PlatformFileError error; local
143 &error);
144 if (error == base::PLATFORM_FILE_ERROR_NOT_FOUND) {
146 } else if (error != base::PLATFORM_FILE_OK)
    [all...]
  /external/chromium_org/net/ocsp/
nss_ocsp_unittest.cc 145 int error = verifier()->Verify(test_cert.get(), local
153 ASSERT_EQ(ERR_IO_PENDING, error);
155 error = test_callback.WaitForResult();
157 EXPECT_EQ(OK, error);
  /external/chromium_org/net/quic/crypto/
crypto_framer.h 31 // Called if an error is detected.
48 // there is an error, the message is truncated, or the message has trailing
60 QuicErrorCode error() const { return error_; } function in class:net::CryptoFramer
63 // false if there was an error, and true otherwise.
71 // |message|, or NULL if there was an error.
79 // Process does does the work of |ProcessInput|, but returns an error code,
97 // Last error.
  /external/chromium_org/net/tools/quic/test_tools/
quic_test_utils.h 69 MOCK_METHOD1(SendConnectionClose, void(QuicErrorCode error));
71 QuicErrorCode error,
74 QuicRstStreamErrorCode error));
75 MOCK_METHOD3(SendGoAway, void(QuicErrorCode error,
130 MOCK_METHOD2(OnConnectionClosed, void(QuicGuid guid, QuicErrorCode error));
140 bool error() { return error_; } function in class:net::tools::test::TestDecompressorVisitor
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
scriptable_plugin.cc 28 pp::Var Error(const nacl::string& call_name, const char* caller,
29 const char* error, pp::Var* exception) {
31 error_stream << call_name << ": " << error; local
35 // Get the error string in 2 steps; otherwise, the temporary string returned
100 Error("GetProperty", name.DebugString().c_str(),
110 Error("SetProperty", name.DebugString().c_str(),
119 Error("RemoveProperty", name.DebugString().c_str(),
128 Error("GetAllPropertyNames", "", "GetAllPropertyNames is not supported",
138 return Error("Call", name.DebugString().c_str(),
147 return Error("constructor", "Construct", "constructor is not supported"
    [all...]
  /external/chromium_org/ppapi/native_client/tests/ppapi_browser/extension_mime_handler/
ppapi_extension_mime_handler.cc 28 // first error (if any) we encounter during load and responding to a normal
91 // keep it around until we have read all bytes or get an error.
115 char error[1024]; local
116 snprintf(error, sizeof(error),
117 "ERROR at %s:%d: Document Load Failed\n",
119 fprintf(stderr, "%s", error);
120 PostTestMessage(__FUNCTION__, error);
  /external/chromium_org/ppapi/native_client/tests/ppapi_browser/
progress_event_listener.js 12 'loadstart': { 'progress': 1, 'error': 1, 'abort': 1, 'load': 1 },
13 'progress': { 'progress': 1, 'error': 1, 'abort': 1, 'load': 1 },
14 'error': { 'loadend': 1 },
27 'error': 0,
107 body_element.addEventListener('error', eventListener, true);
156 // Check that the right number of 'error' events were dispatched.
157 assertEqual(eventMachine.stateHistogram['error'], errorCount);
181 // If an error or abort was reported, check that lastError is set
183 if ((eventMachine.stateHistogram['error'] > 0 ||
  /external/chromium_org/ppapi/proxy/
flash_file_resource.cc 24 // PP_FILESYSTEMTYPE_EXTERNAL path. Returns an empty string on error.
68 int32_t error = SyncCall<IPC::Message>( local
71 return error;
80 int32_t error = SyncCall<IPC::Message>( local
84 return error;
92 int32_t error = SyncCall<IPC::Message>(BROWSER, local
95 return error;
111 int32_t error = SyncCall<PpapiPluginMsg_FlashFile_GetDirContentsReply>( local
114 if (error == PP_OK) {
130 return error;
148 int32_t error = GenericSyncCall(BROWSER, local
189 int32_t error = GenericSyncCall(BROWSER, local
212 int32_t error = SyncCall<PpapiPluginMsg_FlashFile_QueryFileReply>(BROWSER, local
    [all...]
  /external/chromium_org/ppapi/tests/
test_graphics_3d.cc 57 std::string error = CheckPixelPPAPI(&context, width/2, height/2, red_color); local
58 if (!error.empty())
59 return error;
84 std::string error = CheckPixelGL(width/2, height/2, red_color); local
86 if (!error.empty())
87 return error;
172 // provide reasonable (error) results when the resource is bad.
  /external/chromium_org/printing/
printing_context_no_system_dialog.cc 56 UErrorCode error = U_ZERO_ERROR; local
57 ulocdata_getPaperSize(app_locale_.c_str(), &height, &width, &error);
58 if (error > U_ZERO_ERROR) {
60 LOG(WARNING) << "ulocdata_getPaperSize failed, using 8.5 x 11, error: "
61 << error;
  /external/chromium_org/remoting/codec/
audio_decoder_opus.cc 40 int error; local
41 decoder_ = opus_decoder_create(kSamplingRate, channels_, &error);
43 LOG(ERROR) << "Failed to create OPUS decoder; Error code: " << error;
122 LOG(ERROR) << "Failed decoding Opus frame. Error code: " << result;
audio_encoder_opus.cc 58 int error; local
60 OPUS_APPLICATION_AUDIO, &error);
62 LOG(ERROR) << "Failed to create OPUS encoder. Error code: " << error;
144 LOG(ERROR) << "Encoder initialization failed";
202 LOG(ERROR) << "opus_encode() failed with error code: " << result;
  /external/chromium_org/remoting/host/
pairing_registry_delegate_linux.cc 111 base::PlatformFileError error; local
112 if (!base::CreateDirectoryAndGetError(registry_path, &error)) {
113 LOG(ERROR) << "Could not create pairing registry directory: " << error;
120 LOG(ERROR) << "Failed to serialize pairing data for "
129 LOG(ERROR) << "Could not save pairing data for " << pairing.client_id();
  /external/chromium_org/remoting/protocol/
jingle_messages_unittest.cc 26 // equivalent. Otherwise |error| is set to error message that
30 std::string* error) {
32 *error = "<" + exp->Name().Merged() + ">" + " is expected, but " +
37 *error = "<" + exp->Name().LocalPart() + ">" + exp->BodyText() +
51 *error = "In <" + exp->Name().LocalPart() + "> attribute " +
65 *error = "In <" + exp->Name().LocalPart() + "> unexpected attribute " +
74 if (!VerifyXml(exp_child, val_child, error))
80 *error = "<" + exp_child->Name().Merged() + "> is expected, but not found";
85 *error = "Unexpected <" + val_child->Name().Merged() + "> found"
128 std::string error; local
169 std::string error; local
202 std::string error; local
229 std::string error; local
255 std::string error; local
281 const JingleMessageReply::ErrorType error; member in struct:remoting::protocol::TestCase
329 std::string error; local
368 std::string error; local
    [all...]
pairing_authenticator_base.cc 22 const buzz::StaticQName kPairingErrorAttribute = { "", "error" };
74 // this case the pairing protocol can continue by communicating the error
110 std::string error = pairing_failed_tag->Attr(kPairingErrorAttribute); local
111 LOG(ERROR) << "Pairing failed: " << error;

Completed in 1182 milliseconds

<<21222324252627282930>>