HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 251 - 275 of 5380) sorted by null

<<11121314151617181920>>

  /frameworks/av/drm/libmediadrm/
SharedLibrary.cpp 46 // Clear last error before we load the symbol again,
53 const char *error = dlerror(); local
54 return error ? error : "No errors or unknown error";
  /frameworks/av/media/img_utils/src/
FileOutput.cpp 55 int error = ::ferror(mFp); local
56 if (error != 0) {
57 ALOGE("%s: Error %d occurred while writing file %s.", __FUNCTION__, error, mPath.string());
  /frameworks/av/media/mtp/
PosixAsyncIO.h 40 int error; member in struct:aiocb
  /frameworks/base/services/core/java/com/android/server/pm/
PackageManagerException.java 26 public final int error; field in class:PackageManagerException
30 this.error = PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
33 public PackageManagerException(int error, String detailMessage) {
35 this.error = error;
38 public PackageManagerException(int error, String detailMessage, Throwable throwable) {
40 this.error = error;
45 this.error = PackageManager.INSTALL_FAILED_INTERNAL_ERROR;
50 throw new PackageManagerException(e.error, e.getMessage(), e.getCause())
    [all...]
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/error/
ErrorTest.java 17 package android.test.suitebuilder.examples.error;
FailingTest.java 17 package android.test.suitebuilder.examples.error;
  /frameworks/base/tools/aapt2/link/
ReferenceLinker_test.cpp 267 std::string error; local
270 *test::BuildReference("com.app.test:string/foo"), call_site, &table, &error);
272 EXPECT_TRUE(error.empty());
285 std::string error; local
289 *test::BuildReference("com.app.test:attr/foo"), call_site, &table, &error));
290 EXPECT_FALSE(error.empty());
292 error = "";
294 *test::BuildReference("com.app.test:attr/public_foo"), call_site, &table, &error));
295 EXPECT_TRUE(error.empty());
  /frameworks/compile/libbcc/lib/
CompilerConfig.cpp 85 std::string error; local
86 mTarget = llvm::TargetRegistry::lookupTarget(mTriple, error);
91 mTriple.c_str(), error.c_str());
  /frameworks/compile/mclinker/include/mcld/Support/
MsgHandling.h 30 MsgHandler error(unsigned int pID);
49 inline mcld::MsgHandler mcld::error(unsigned int pID) { function in class:mcld
50 return getDiagnosticEngine().report(pID, DiagnosticEngine::Error);
  /frameworks/layoutlib/remote/common/src/com/android/layout/remote/api/
RemoteLayoutLog.java 47 * @param viewCookie optional cookie of the view associated to this error
54 * Logs an error.
56 * @param tag a tag describing the type of the error
57 * @param message the message of the error
58 * @param data an optional data bundle that the client can use to improve the error display.
60 void error(String tag, String message, Serializable data) throws RemoteException; method in interface:RemoteLayoutLog
63 * Logs an error, and the {@link Throwable} that triggered it.
65 * @param tag a tag describing the type of the error
66 * @param message the message of the error
67 * @param throwable the Throwable that triggered the error
70 void error(String tag, String message, Throwable throwable, Serializable data) method in interface:RemoteLayoutLog
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
vbp_loader.c 20 uint32 error; local
36 error = vbp_utils_create_context(parser_type, ppcontext);
37 if (VBP_OK != error)
39 ETRACE("Failed to create context: %d.", error);
42 return error;
50 uint32 error; local
65 error = vbp_utils_destroy_context(pcontext);
66 if (VBP_OK != error)
68 ETRACE("Failed to destroy context: %d.", error);
71 return error;
81 uint32 error = VBP_OK; local
112 uint32 error = VBP_OK; local
143 uint32 error = VBP_OK; local
    [all...]
  /libcore/luni/src/main/java/libcore/reflect/
InternalNames.java 55 NoClassDefFoundError error = new NoClassDefFoundError(name); local
56 error.initCause(e);
57 throw error;
  /libcore/ojluni/src/main/native/
SocketChannelImpl.c 56 int error = 0; local
78 result = getsockopt(fd, SOL_SOCKET, SO_ERROR, &error, &n);
82 } else if (error) {
83 handleSocketError(env, error);
  /packages/apps/Dialer/java/com/android/dialer/voicemail/listui/error/
VoicemailErrorMessageCreator.java 17 package com.android.dialer.voicemail.listui.error;
35 // Never return error message before NMR1. Voicemail status is not supported on those.
VoicemailStatusReader.java 17 package com.android.dialer.voicemail.listui.error;
20 * A source that is generating the voicemail status to show error messages, used by {@link
VoicemailTosMessage.java 17 package com.android.dialer.voicemail.listui.error;
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/provisioning/
ProvisioningManagerCallback.java 25 * Method called when an error was encountered during the provisioning process.
27 * @param dialogTitleId resource id of the error title to be displayed to the user.
28 * @param errorMessageId resource id of the error message to be displayed to the user.
31 void error(int dialogTitleId, int errorMessageId, boolean factoryResetRequired); method in interface:ProvisioningManagerCallback
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
StopRequestException.java 52 final String error = "Unhandled HTTP response: " + code + " " + message; local
54 throw new StopRequestException(code, error);
56 throw new StopRequestException(STATUS_UNHANDLED_REDIRECT, error);
58 throw new StopRequestException(STATUS_UNHANDLED_HTTP_CODE, error);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
Regex.h 52 std::swap(error, regex.error);
58 /// isValid - returns the error encountered during regex compilation, or
60 bool isValid(std::string &Error);
83 /// \param Error If non-null, any errors in the substitution (invalid
87 std::string *Error = nullptr);
98 int error; member in class:llvm::Regex
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
Regex.h 52 std::swap(error, regex.error);
58 /// isValid - returns the error encountered during regex compilation, or
60 bool isValid(std::string &Error) const;
83 /// \param Error If non-null, any errors in the substitution (invalid
87 std::string *Error = nullptr);
98 int error; member in class:llvm::Regex
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
Regex.h 52 std::swap(error, regex.error);
58 /// isValid - returns the error encountered during regex compilation, or
60 bool isValid(std::string &Error) const;
83 /// \param Error If non-null, any errors in the substitution (invalid
87 std::string *Error = nullptr);
98 int error; member in class:llvm::Regex
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
Regex.h 52 std::swap(error, regex.error);
58 /// isValid - returns the error encountered during regex compilation, or
60 bool isValid(std::string &Error) const;
83 /// \param Error If non-null, any errors in the substitution (invalid
87 std::string *Error = nullptr);
98 int error; member in class:llvm::Regex
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
Regex.h 52 std::swap(error, regex.error);
58 /// isValid - returns the error encountered during regex compilation, or
60 bool isValid(std::string &Error) const;
83 /// \param Error If non-null, any errors in the substitution (invalid
87 std::string *Error = nullptr);
98 int error; member in class:llvm::Regex
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
Regex.h 52 std::swap(error, regex.error);
58 /// isValid - returns the error encountered during regex compilation, or
60 bool isValid(std::string &Error) const;
83 /// \param Error If non-null, any errors in the substitution (invalid
87 std::string *Error = nullptr);
98 int error; member in class:llvm::Regex
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
Regex.h 52 std::swap(error, regex.error);
58 /// isValid - returns the error encountered during regex compilation, or
60 bool isValid(std::string &Error) const;
83 /// \param Error If non-null, any errors in the substitution (invalid
87 std::string *Error = nullptr);
98 int error; member in class:llvm::Regex

Completed in 753 milliseconds

<<11121314151617181920>>