/external/protobuf/src/google/protobuf/compiler/ |
plugin.cc | 110 // BuildFile() already wrote an error message. 128 string error; local 130 file, request.parameter(), &output_directory, &error); 132 if (!succeeded && error.empty()) { 133 error = "Code generator returned false but provided no error " 136 if (!error.empty()) { 137 response.set_error(file->name() + ": " + error); 143 cerr << argv[0] << ": Error writing to stdout." << endl;
|
/external/qemu/android/ |
async-utils.h | 31 ASYNC_ERROR, /* an error occurred, look at errno */ 73 * ASYNC_ERROR: If an error occured (see errno). The error will be 114 * ASYNC_ERROR: If an error occured (see errno). The error will be 175 * ASYNC_ERROR: An error occured. Note that in case of disconnection, 196 * should be '\n' unless an error occured. 201 * stripped. This will be NULL in case of error though. 215 int error; member in struct:__anon24629
|
/external/skia/src/images/ |
SkJpegUtility.cpp | 162 skjpeg_error_mgr* error = (skjpeg_error_mgr*)cinfo->err; local 164 (*error->output_message) (cinfo); 169 longjmp(error->fJmpBuf, -1);
|
/external/smack/src/org/jivesoftware/smack/ |
XMPPException.java | 30 * A generic exception that is thrown when an error occurs performing an 31 * XMPP operation. XMPP servers can respond to error conditions with an error code 35 * When a stream error occured, the server will send a stream error to the client before 36 * closing the connection. Stream errors are unrecoverable errors. When a stream error 46 private XMPPError error = null; field in class:XMPPException 77 * Cretaes a new XMPPException with the stream error that was the root case of the 78 * exception. When a stream error is received from the server then the underlying 92 * @param error the root cause of the exception [all...] |
/external/smack/src/org/jivesoftware/smack/util/dns/ |
HostAddress.java | 100 String error; local 102 error = "No error logged"; 105 error = exception.getMessage(); 107 return toString() + " Exception: " + error;
|
/external/stlport/test/unit/cppunit/ |
file_reporter.h | 64 virtual void error(const char *in_macroName, const char *in_macro, const char *in_file, int in_line) { function in class:FileReporter 65 // Error might be called several times between 2 progress calls, we shouldn't however consider
|
/external/webrtc/src/system_wrappers/source/ |
cpu_mac.cc | 31 kern_return_t error = host_processor_info(mach_host_self(), local 36 if (error) 106 kern_return_t error = host_processor_info(mach_host_self(), local 111 if (error)
|
/frameworks/base/core/jni/ |
android_view_HardwareRenderer.cpp | 70 EGLint error = eglGetError(); local 71 if (error != EGL_SUCCESS) { 72 RENDERER_LOGD("Could not enable buffer preserved swap behavior (%x)", error); 75 return error == EGL_SUCCESS; 86 EGLint error = eglGetError(); local 87 if (error != EGL_SUCCESS) { 88 RENDERER_LOGD("Could not query buffer preserved swap behavior (%x)", error); 91 return error == EGL_SUCCESS && value == EGL_BUFFER_PRESERVED;
|
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
Log.java | 49 public void error(String format, Object... args) { method in class:Log 59 error(format + "\n" + sw.toString(), args);
|
/frameworks/compile/libbcc/bcinfo/ |
BitcodeTranslator.cpp | 123 std::string error; local 129 module = llvm_3_0::ParseBitcodeFile(MEM.get(), *mContext, &error); 131 module = llvm_2_7::ParseBitcodeFile(MEM.get(), *mContext, &error); 139 ALOGE("%s", error.c_str());
|
/frameworks/compile/libbcc/lib/Core/ |
Compiler.cpp | 58 return "Supplied output file was invalid (in the error state.)"; 64 return "Error occurred during beforeAddLTOPasses() in subclass."; 66 return "Error occurred during afterAddLTOPasses() in subclass."; 68 return "Error occurred during afterExecuteLTOPasses() in subclass."; 70 return "Error occurred during beforeAddCodeGenPasses() in subclass."; 72 return "Error occurred during afterAddCodeGenPasses() in subclass."; 74 return "Error occurred during beforeExecuteCodeGenPasses() in subclass."; 76 return "Error occurred during afterExecuteCodeGenPasses() in subclass."; 78 return "Error loading input bitcode"; 83 assert(false && "Unknown error code encountered") 258 std::string error; local [all...] |
Source.cpp | 37 // and take the ownership of input memory buffer (i.e., pInput). On error, 41 std::string error; local 42 llvm::Module *module = llvm::getLazyBitcodeModule(pInput, pContext, &error); 46 pInput->getBufferIdentifier(), error.c_str()); 137 std::string error; local 143 mode, &error) != 0) { 147 error.c_str());
|
/frameworks/native/libs/gui/ |
IGraphicBufferAlloc.cpp | 46 PixelFormat format, uint32_t usage, status_t* error) { 63 *error = result; 95 status_t error; local 97 createGraphicBuffer(w, h, format, usage, &error); 98 reply->writeInt32(error);
|
/frameworks/native/opengl/libs/EGL/ |
egl_tls.cpp | 36 : error(EGL_SUCCESS), ctx(0), logCallWithNoContext(EGL_TRUE) { 71 const char* caller, int line, EGLint error, bool quiet) { 74 if (tls->error != error) { 76 ALOGE("%s:%d error %x (%s)", 77 caller, line, error, egl_strerror(error)); 84 tls->error = error; 117 // This must clear the error from all the underlying EGL implementations a 130 EGLint error = tls->error; local [all...] |
/hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/ |
ts_parser.h | 71 bool error; member in class:omx_time_stamp_reorder 79 ALOGE("Error handler called for TS Parser"); 80 if (error) 82 error = true;
|
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/ |
ts_parser.h | 72 bool error; member in class:omx_time_stamp_reorder 79 ALOGE("Error handler called for TS Parser"); 81 if (error) 84 error = true;
|
/libcore/luni/src/main/java/org/xml/sax/ |
HandlerBase.java | 329 * Receive notification of a recoverable parser error. 333 * for each error, such as inserting the message in a log file or 342 public void error (SAXParseException e) 350 * Report a fatal XML parsing error. 354 * they need to take specific actions for each fatal error (such as 360 * @param e The error information encoded as an exception. 338 public void error (SAXParseException e) method in class:HandlerBase
|
/ndk/tests/device/test-gnustl-full/unit/cppunit/ |
file_reporter.h | 64 virtual void error(const char *in_macroName, const char *in_macro, const char *in_file, int in_line) { function in class:FileReporter 65 // Error might be called several times between 2 progress calls, we shouldn't however consider
|
/ndk/tests/device/test-stlport/unit/cppunit/ |
file_reporter.h | 64 virtual void error(const char *in_macroName, const char *in_macro, const char *in_file, int in_line) { function in class:FileReporter 65 // Error might be called several times between 2 progress calls, we shouldn't however consider
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
log.py | 9 ERROR = 4 20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL): 26 if level in (WARN, ERROR, FATAL): 45 def error(self, msg, *args): member in class:Log 46 self._log(ERROR, msg, args) 56 error = _global_log.error variable
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
dummy_thread.py | 16 __all__ = ['error', 'start_new_thread', 'exit', 'get_ident', 'allocate_lock', 21 class error(Exception): class in inherits:Exception 22 """Dummy implementation of thread.error.""" 78 raise error("setting thread stack size not supported") 126 raise error
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_pickle.py | 23 error = KeyError variable in class:PickleTests 27 error = KeyError variable in class:PicklerTests
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
log.py | 9 ERROR = 4 20 if level not in (DEBUG, INFO, WARN, ERROR, FATAL): 26 if level in (WARN, ERROR, FATAL): 45 def error(self, msg, *args): member in class:Log 46 self._log(ERROR, msg, args) 56 error = _global_log.error variable
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
dummy_thread.py | 16 __all__ = ['error', 'start_new_thread', 'exit', 'get_ident', 'allocate_lock', 21 class error(Exception): class in inherits:Exception 22 """Dummy implementation of thread.error.""" 78 raise error("setting thread stack size not supported") 126 raise error
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_pickle.py | 23 error = KeyError variable in class:PickleTests 27 error = KeyError variable in class:PicklerTests
|