HomeSort by relevance Sort by last modified time
    Searched refs:error_code (Results 176 - 200 of 934) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/content/renderer/media/
webcontentdecryptionmodulesession_impl.cc 67 media::MediaKeys::KeyError error_code,
69 client_->keyError(static_cast<Client::MediaKeyErrorCode>(error_code),
  /external/chromium_org/media/video/capture/
video_capture_proxy.h 51 virtual void OnError(VideoCapture* capture, int error_code) OVERRIDE;
74 int error_code);
  /external/chromium_org/net/socket/
client_socket_pool_histograms.cc 78 void ClientSocketPoolHistograms::AddErrorCode(int error_code) const {
80 error_code_->Add(-error_code);
  /external/chromium_org/ppapi/api/dev/
ppp_video_capture_dev.idl 54 [in] uint32_t error_code);
  /external/chromium_org/webkit/browser/fileapi/
file_system_backend.h 81 // and |type|. If |error_code| is PLATFORM_FILE_OK and the result is NULL,
84 FileSystemType type, base::PlatformFileError* error_code) = 0;
89 // |error_code| correspondingly.
95 base::PlatformFileError* error_code) const = 0;
isolated_file_system_backend.h 32 base::PlatformFileError* error_code) OVERRIDE;
36 base::PlatformFileError* error_code) const OVERRIDE;
test_file_system_backend.h 48 base::PlatformFileError* error_code) OVERRIDE;
52 base::PlatformFileError* error_code) const OVERRIDE;
  /external/chromium_org/webkit/child/
resource_loader_bridge.h 113 int error_code; member in struct:webkit_glue::ResourceLoaderBridge::SyncLoadResponse
174 int error_code,
  /external/llvm/include/llvm/Object/
Binary.h 119 error_code createBinary(MemoryBuffer *Source, OwningPtr<Binary> &Result);
121 error_code createBinary(StringRef Path, OwningPtr<Binary> &Result);
  /external/llvm/lib/Support/
system_error.cpp 40 error_category::equivalent(const error_code& code, int condition) const {
115 // error_code
118 error_code::message() const {
  /external/llvm/tools/llvm-cov/
llvm-cov.cpp 48 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputGCNO, GCNO_Buff)) {
60 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputGCDA, GCDA_Buff)) {
  /frameworks/compile/libbcc/include/bcc/Support/
FileBase.h 69 llvm::error_code mError;
138 inline const llvm::error_code &getError() const
141 // The return value of llvm::error_code::message() is obtained upon the call
142 // and is passed by value (that is, it's not a member of llvm::error_code.)
  /external/javasqlite/src/main/java/SQLite/
Database.java 19 protected int error_code = 0; field in class:Database
308 set_last_error(vm.error_code);
311 set_last_error(vm.error_code);
315 set_last_error(vm.error_code);
361 set_last_error(vm.error_code);
364 set_last_error(vm.error_code);
368 set_last_error(vm.error_code);
417 set_last_error(vm.error_code);
421 set_last_error(vm.error_code);
517 return error_code;
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
media_file_system_backend.cc 146 fileapi::FileSystemType type, base::PlatformFileError* error_code) {
147 DCHECK(error_code);
148 *error_code = base::PLATFORM_FILE_OK;
154 *error_code = base::PLATFORM_FILE_ERROR_SECURITY;
168 base::PlatformFileError* error_code) const {
  /external/chromium_org/chrome/common/
localized_error.cc 65 int error_code; member in struct:__anon9154::LocalizedErrorMap
422 int error_code) {
424 if (maps[i].error_code == error_code)
431 int error_code, bool is_post) {
435 if (is_post && error_code == net::ERR_CACHE_MISS)
439 error_code);
443 error_code);
448 error_code);
501 int error_code = error.reason local
    [all...]
  /external/llvm/lib/ExecutionEngine/MCJIT/
SectionMemoryManager.cpp 72 error_code ec;
106 error_code ec;
138 error_code SectionMemoryManager::applyMemoryGroupPermissions(MemoryGroup &MemGroup,
142 error_code ec;
150 return error_code::success();
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 34 static void check(error_code ec) {
54 error_code ec;
87 error_code ec;
110 error_code coff2yaml(raw_ostream &Out, MemoryBuffer *Buff) {
111 error_code ec;
  /external/chromium/chrome/browser/google/
google_update.cc 280 GoogleUpdateErrorCode error_code = CanUpdateCurrentChrome(chrome_exe); local
281 if (error_code != GOOGLE_UPDATE_NO_ERROR) {
283 &GoogleUpdate::ReportResults, UPGRADE_ERROR, error_code));
363 GoogleUpdateErrorCode error_code) {
365 DCHECK(results == UPGRADE_ERROR ? error_code != GOOGLE_UPDATE_NO_ERROR :
366 error_code == GOOGLE_UPDATE_NO_ERROR);
368 listener_->OnReportResults(results, error_code, version_available_);
371 bool GoogleUpdate::ReportFailure(HRESULT hr, GoogleUpdateErrorCode error_code,
374 << " error: " << error_code; local
376 &GoogleUpdate::ReportResults, UPGRADE_ERROR, error_code));
    [all...]
  /external/chromium_org/chromeos/disks/
disk_mount_manager.cc 299 void OnMountCompleted(MountError error_code,
305 if (error_code == MOUNT_ERROR_UNKNOWN_FILESYSTEM) {
308 if (error_code == MOUNT_ERROR_UNSUPPORTED_FILESYSTEM) {
315 NotifyMountStatusUpdate(MOUNTING, error_code, mount_info);
319 if ((error_code == MOUNT_ERROR_NONE || mount_info.mount_condition) &&
324 if ((error_code == MOUNT_ERROR_NONE || mount_info.mount_condition) &&
376 MountError error_code) {
377 if (error_code == MOUNT_ERROR_NONE &&
406 FormatError error_code = success ? FORMAT_ERROR_NONE : FORMAT_ERROR_UNKNOWN; local
407 NotifyFormatStatusUpdate(FORMAT_STARTED, error_code, device_path)
518 FormatError error_code; local
    [all...]
  /external/chromium/base/
file_util_proxy.cc 97 void set_error_code(base::PlatformFileError error_code) {
98 error_code_ = error_code;
101 base::PlatformFileError error_code() const { function in class:__anon4067::MessageLoopRelay
145 base::PlatformFileError error_code = base::PLATFORM_FILE_OK; local
147 &created_, &error_code);
148 set_error_code(error_code);
152 callback_->Run(error_code(), base::PassPlatformFile(&file_handle_),
195 base::PlatformFileError error_code = base::PLATFORM_FILE_OK; local
197 NULL, &error_code);
198 set_error_code(error_code);
273 base::PlatformFileError error_code = base::PLATFORM_FILE_OK; local
    [all...]
  /external/chromium_org/content/browser/geolocation/
gps_location_provider_linux.cc 109 position->error_code = Geoposition::ERROR_CODE_POSITION_UNAVAILABLE;
128 position->error_code = Geoposition::ERROR_CODE_NONE;
137 position->error_code = Geoposition::ERROR_CODE_POSITION_UNAVAILABLE;
235 position_.error_code = Geoposition::ERROR_CODE_POSITION_UNAVAILABLE;
254 position->error_code != Geoposition::ERROR_CODE_NONE);
278 new_position.error_code != Geoposition::ERROR_CODE_NONE);
282 if (differ || new_position.error_code != Geoposition::ERROR_CODE_NONE) {
  /external/chromium_org/content/child/
socket_stream_dispatcher.cc 52 void OnFailed(int error_code, const char* error_msg);
166 void IPCWebSocketStreamHandleBridge::OnFailed(int error_code,
168 DVLOG(1) << "Bridge #" << socket_id_ << " OnFailed (error_code=" << error_code local
171 delegate_->DidFail(handle_, error_code, ASCIIToUTF16(error_msg));
247 void SocketStreamDispatcher::OnFailed(int socket_id, int error_code) {
251 bridge->OnFailed(error_code, net::ErrorToString(error_code));
  /external/chromium/chrome/browser/safe_browsing/
client_side_detection_service.h 159 void OpenModelFileDone(base::PlatformFileError error_code,
167 void CreateModelFileDone(base::PlatformFileError error_code,
175 void WriteModelFileDone(base::PlatformFileError error_code,
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stunserver.cc 137 int error_code, const char* error_desc) {
144 err_code->SetErrorClass(error_code / 100);
145 err_code->SetNumber(error_code % 100);
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
mounted_disk_monitor.cc 67 chromeos::MountError error_code,
77 if (!disk || error_code != chromeos::MOUNT_ERROR_NONE)
108 chromeos::FormatError error_code,

Completed in 1660 milliseconds

1 2 3 4 5 6 78 91011>>