HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 476 - 500 of 3032) sorted by null

<<11121314151617181920>>

  /external/icu/icu4c/source/extra/uconv/
uwmsg.c 62 /* reset the error code */
246 char error[128]; local
249 sprintf(error, "UNDOCUMENTED ICU ERROR %d", err);
250 textMsg = error;
  /external/icu/icu4c/source/samples/layout/
GnomeFontInstance.cpp 53 FT_Error error; local
58 error = FT_New_Face(engine, fontPathName, 0, &fFace);
60 if (error != 0) {
61 printf("OOPS! Got error code %d\n", error);
70 error = FT_Set_Char_Size(fFace, 0, pointSize << 6, 92, 92);
82 if (error != 0) {
146 FT_Error error; local
148 error = FT_Load_Glyph(fFace, glyph, FT_LOAD_DEFAULT);
150 if (error != 0)
160 FT_Error error; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
stdnmtst.c 41 UErrorCode error; local
44 error = U_ZERO_ERROR;
45 tag = ucnv_getStandardName(name, standard, &error);
47 log_err_status(error, "FAIL: could not find %s standard name for %s\n", standard, name);
71 log_err("FAIL: ucnv_getStandard(%d), error=%s\n", i, u_errorName(err));
117 UErrorCode error; local
120 error = U_ZERO_ERROR;
121 tag = ucnv_getCanonicalName(name, standard, &error);
127 log_err_status(error, "FAIL: could not find %s canonical name for %s\n", (standard ? "\"\"" : standard), name);
197 log_err("FAIL: uenum_next(%d) == \"%s\". expected \"%s\", len=%d, error=%s\n"
    [all...]
  /external/ipsec-tools/src/racoon/
kmpstat.c 213 int error; local
220 error = getaddrinfo(name, port, &hint, &ai);
221 if (error != 0) {
222 printf("%s: %s/%s\n", gai_strerror(error), name, port);
  /external/javassist/src/main/javassist/util/proxy/
RuntimeSupport.java 70 error(self, name, desc); method
88 error(self, name, desc); method
93 private static void error(Object self, String name, String desc) { method in class:RuntimeSupport
  /external/libcxx/test/libcxx/android/test/
format.py 3 import lit.util # pylint: disable=import-error namespace
  /external/libcxx/test/libcxx/test/
executor.py 5 from lit.util import executeCommand # pylint: disable=import-error namespace
  /external/libopus/celt/
entcode.h 83 /*Nonzero if an error occurred.*/
84 int error; member in struct:ec_ctx
96 return _this->error;
104 rounding error is in the positive direction).*/
114 rounding error is in the positive direction).*/
  /external/libpcap/
pcap-dbus.c 111 DBusError error = DBUS_ERROR_INIT; local
114 if (!(msg = dbus_message_demarshal(buf, size, &error))) {
115 snprintf(handle->errbuf, PCAP_ERRBUF_SIZE, "dbus_message_demarshal() failed: %s", error.message);
116 dbus_error_free(&error);
157 EAVESDROPPING_RULE "type='error'",
165 DBusError error = DBUS_ERROR_INIT; local
169 if (!(handlep->conn = dbus_bus_get(DBUS_BUS_SYSTEM, &error))) {
170 snprintf(handle->errbuf, PCAP_ERRBUF_SIZE, "Failed to get system bus: %s", error.message);
171 dbus_error_free(&error);
176 if (!(handlep->conn = dbus_bus_get(DBUS_BUS_SESSION, &error))) {
    [all...]
  /external/libpcap/tests/
nonblocktest.c 44 static void error(const char *, ...);
88 error("%s", ebuf);
93 error("%s", ebuf);
104 error("%s", pcap_geterr(pd));
107 error("%s", pcap_geterr(pd));
109 error("pcap_setnonblock failed: %s", ebuf);
133 * Error. Report it.
160 error(const char *fmt, ...) function
214 error("copy_argv: malloc");
  /external/libvpx/libvpx/test/
dct32x32_test.cc 120 const uint32_t error = diff * diff; local
121 if (max_error < error)
122 max_error = error;
123 total_error += error;
133 << "Error: 32x32 FDCT/IDCT has an individual round-trip error > 1";
136 << "Error: 32x32 FDCT/IDCT has average round-trip error > 1 per block";
158 << "Error: 32x32 FDCT versions have mismatched coefficients";
162 << "Error: 32x32 FDCT rd has mismatched coefficients"
237 const int error = diff * diff; local
    [all...]
idct8x8_test.cc 130 const int error = diff * diff; local
131 EXPECT_GE(1, error)
132 << "Error: 8x8 FDCT/IDCT has error " << error
partial_idct_test.cc 126 const int error = diff * diff; local
127 if (max_error < error)
128 max_error = error;
133 << "Error: partial inverse transform produces different results";
190 const int error = diff * diff; local
191 if (max_error < error)
192 max_error = error;
197 << "Error: partial inverse transform produces different results";
vp8_fdct4x4_test.cc 102 << "Error: 4x4 FDCT has a sign bias > 1% for input range [-255, 255]";
127 << "Error: 4x4 FDCT has a sign bias > 10% for input range [-15, 15]";
150 const int error = diff * diff; local
151 if (max_error < error)
152 max_error = error;
153 total_error += error;
158 << "Error: FDCT/IDCT has an individual roundtrip error > 1";
161 << "Error: FDCT/IDCT has average roundtrip error > 1 per block"
    [all...]
  /external/libxml2/include/libxml/
xmlIO.h 41 * Returns an Input context or NULL in case or error
52 * Returns the number of bytes read or -1 in case of error
61 * Returns 0 or -1 in case of error
87 * Returns an Output context or NULL in case or error
98 * Returns the number of bytes written or -1 in case of error
108 * Returns 0 or -1 in case of error
135 int error; member in struct:_xmlParserInputBuffer
151 int error; member in struct:_xmlOutputBuffer
  /external/lldb/examples/lookup/
main.cpp 101 fprintf (stderr, "error: failed to create a debugger object\n");
143 fprintf (stderr, "error: the --arch option can only be specified once\n");
175 SBError error; local
189 error);
190 if (!error.Success())
192 fprintf (stderr, "error: %s\n", error.GetCString());
228 printf ("error: 0x%llx does not resolve to a valid file address in '%s'\n", file_addr, exe_file_path);
  /external/lldb/examples/python/
types.py 47 print "error: couldn't locate the 'lldb' module, please set PYTHONPATH correctly"
179 return "option parsing failed" # returning a string is the same as returning an error whose description is the string
186 print 'error: invalid target'
212 print 'error: no type matches "%s" in "%s"' % (typename, module.file)
219 print 'error: no modules'
228 # print "error: option parsing failed"
239 error = lldb.SBError() variable
244 error)
245 if error.Fail():
246 print error.GetCString(
    [all...]
  /external/lldb/source/Commands/
CommandObjectDisassemble.cpp 62 Error
65 Error error; local
80 error.SetErrorStringWithFormat ("invalid num context lines string: \"%s\"", option_arg);
86 error.SetErrorStringWithFormat ("invalid num of instructions string: \"%s\"", option_arg);
96 start_addr = Args::StringToAddress(&exe_ctx, option_arg, LLDB_INVALID_ADDRESS, &error);
104 end_addr = Args::StringToAddress(&exe_ctx, option_arg, LLDB_INVALID_ADDRESS, &error);
140 error.SetErrorStringWithFormat("Disassembler flavors are currently only supported for x86 and x86_64 targets.");
160 symbol_containing_addr = Args::StringToAddress(&exe_ctx, option_arg, LLDB_INVALID_ADDRESS, &error);
169 error.SetErrorStringWithFormat("unrecognized short option '%c'", short_option)
    [all...]
  /external/lldb/source/DataFormatters/
CF.cpp 15 #include "lldb/Core/Error.h"
97 Error error; local
98 count = process_sp->ReadUnsignedIntegerFromMemory(offset, 4, 0, error);
99 if (error.Fail())
147 Error error;
148 count = process_sp->ReadUnsignedIntegerFromMemory(valobj_addr+2*ptr_size, ptr_size, 0, error);
149 if (error.Fail())
152 addr_t data_ptr = process_sp->ReadPointerFromMemory(valobj_addr+2*ptr_size+2*ptr_size, error);
291 Error error; local
    [all...]
  /external/lldb/source/Interpreter/
OptionValueArray.cpp 74 Error
86 Error &error) const
119 return m_values[new_idx]->GetSubValue (exe_ctx, sub_value, will_modify, error);
127 error.SetErrorStringWithFormat("index %i is not valid for an empty array", idx);
129 error.SetErrorStringWithFormat("index %i out of range, valid values are 0 through %" PRIu64, idx, (uint64_t)(array_count - 1));
131 error.SetErrorStringWithFormat("negative index %i out of range, valid values are -1 through -%" PRIu64, idx, (uint64_t)array_count);
138 error.SetErrorStringWithFormat("invalid value path '%s', %s values only support '[<index>]' subvalues where <index> is a positive or negative array index", name, GetTypeAsCString());
163 Error
166 Error error local
    [all...]
  /external/lldb/source/Plugins/Process/Utility/
RegisterContextMemory.cpp 18 #include "lldb/Core/Error.h"
126 Error error (WriteRegisterValueToMemory(reg_info, reg_addr, reg_info->byte_size, reg_value));
128 return error.Success();
141 Error error; local
142 if (process_sp->ReadMemory(m_reg_data_addr, data_sp->GetBytes(), data_sp->GetByteSize(), error) == data_sp->GetByteSize())
160 Error error; local
162 if (process_sp->WriteMemory(m_reg_data_addr, data_sp->GetBytes(), data_sp->GetByteSize(), error) == data_sp->GetByteSize()
    [all...]
UnwindMacOSXFrameBackchain.cpp 117 Error error; local
121 if (process->ReadMemory (frame.fp, &frame.fp, k_frame_size, error) != k_frame_size)
160 if (first_frame_sp && process->ReadMemory (first_frame_sp, &frame.pc, sizeof(frame.pc), error) == sizeof(frame.pc))
214 Error error; local
219 if (process->ReadMemory (frame.fp, &frame.fp, k_frame_size, error) != k_frame_size)
259 if (process->ReadMemory (first_frame_sp, &frame.pc, sizeof(frame.pc), error) == sizeof(frame.pc))
  /external/lldb/tools/lldb-perf/lib/
TestCase.cpp 108 lldb::SBError error; local
109 m_process = m_target.Launch (launch_info, error);
110 if (!error.Success())
111 fprintf (stderr, "error: %s\n", error.GetCString());
276 printf("error: invalid thread for step out on step %d\n", m_step);
289 printf("error: invalid thread for step over %d\n",m_step);
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileWrapper.cpp 72 std::string error; local
73 if(!DynamicLibrary::LoadLibraryPermanently("libopagent.so", &error)) {
76 << error << "\n");
  /external/llvm/tools/llvm-lto/
llvm-lto.cpp 96 errs() << "error: ";
107 const TargetOptions &Options, std::string &Error) {
111 Error = EC.message();
116 Buffer->getBufferStart(), Buffer->getBufferSize(), Options, Error, Path));
127 std::string Error;
130 getLocalLTOModule(Filename, Buffer, Options, Error);
132 errs() << Command << ": error loading file '" << Filename
133 << "': " << Error << "\n";
201 std::string error; local
203 LTOModule::createFromFile(InputFilenames[i].c_str(), Options, error));
206 << "': " << error << "\\n"; local
    [all...]

Completed in 37 milliseconds

<<11121314151617181920>>