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

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/libvpx/vp8/encoder/
boolhuff.h 37 struct vpx_internal_error_info *error; member in struct:__anon13801
52 struct vpx_internal_error_info *error)
57 vpx_internal_error(error, VPX_CODEC_CORRUPT_FRAME,
113 validate_buffer(br->buffer + br->pos, 1, br->buffer_end, br->error);
  /external/libxml2/python/tests/
pushSAX.py 35 def error(self, msg): member in class:callback
37 log = log + "error: %s:" % (msg)
54 print("Error got: %s" % log)
pushSAXhtml.py 35 def error(self, msg): member in class:callback
37 log = log + "error: %s:" % (msg)
52 reference = """startDocument:startElement html None:startElement body None:startElement foo {'url': 'tst'}:error: Tag foo invalid
55 print("Error got: %s" % log)
  /external/linux-tools-perf/src/tools/perf/util/
usage.c 33 report(" Error: ", err, params);
67 int error(const char *err, ...) function
  /external/lldb/source/Commands/
CommandObjectHelp.h 56 virtual Error
59 Error error; local
71 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
75 return error;
CommandObjectPlugin.cpp 95 Error error; local
99 if (m_interpreter.GetDebugger().LoadPlugin(dylib_fspec, error))
103 result.AppendError(error.AsCString());
  /external/lldb/source/Interpreter/
OptionGroupArchitecture.cpp 59 Error
64 Error error; local
74 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option);
78 return error;
OptionGroupValueObjectDisplay.cpp 63 Error
68 Error error; local
77 result = Args::StringToOptionEnum (option_arg, g_dynamic_value_types, 2, error);
78 if (error.Success())
92 error.SetErrorStringWithFormat("invalid max depth '%s'", option_arg);
98 error.SetErrorStringWithFormat("invalid pointer depth '%s'", option_arg);
106 error.SetErrorStringWithFormat("invalid pointer depth '%s'", option_arg);
115 error.SetErrorStringWithFormat("invalid synthetic-type '%s'", option_arg);
118 error.SetErrorStringWithFormat ("unrecognized option '%c'", short_option)
    [all...]
OptionGroupVariable.cpp 18 #include "lldb/Core/Error.h"
41 static Error
45 return Error("must specify a valid named summary");
48 return Error("must specify a valid named summary");
49 return Error();
52 static Error
56 return Error("must specify a non-empty summary string");
57 return Error();
72 Error
77 Error error local
    [all...]
OptionGroupWatchpoint.cpp 70 Error
75 Error error; local
82 tmp_watch_type = (WatchType) Args::StringToOptionEnum(option_arg, g_option_table[option_idx].enum_values, 0, error);
83 if (error.Success())
91 watch_size = (uint32_t) Args::StringToOptionEnum(option_arg, g_option_table[option_idx].enum_values, 0, error);
95 error.SetErrorStringWithFormat("unrecognized short option '%c'", short_option);
99 return error;
OptionValueBoolean.cpp 38 Error
42 Error error; local
62 error.SetErrorString ("invalid boolean string value: NULL");
64 error.SetErrorString ("invalid boolean string value <empty>");
66 error.SetErrorStringWithFormat ("invalid boolean string value: '%s'", value_cstr);
76 error = OptionValue::SetValueFromCString (value_cstr, op);
79 return error;
OptionValueEnumeration.cpp 57 Error
60 Error error; local
90 error.SetErrorString(error_strm.GetData());
95 error.SetErrorString("invalid enumeration value");
104 error = OptionValue::SetValueFromCString (value, op);
107 return error;
OptionValueFileSpecLIst.cpp 43 Error
46 Error error; local
63 error.SetErrorStringWithFormat("invalid file list index %u, index must be 0 through %u", idx, count);
79 error.SetErrorString("replace operation takes an array index followed by one or more values");
100 error.SetErrorString("assign operation takes at least one file path argument");
112 error.SetErrorStringWithFormat("invalid insert file list index %u, index must be 0 through %u", idx, count);
127 error.SetErrorString("insert operation takes an array index followed by one or more values");
161 error.SetErrorStringWithFormat("invalid array index '%s', aborting remove operation", args.GetArgumentAtIndex(i));
166 error.SetErrorString("remove operation takes one or more array index")
    [all...]
OptionValuePathMappings.cpp 35 Error
38 Error error; local
56 error.SetErrorStringWithFormat("invalid file list index %u, index must be 0 through %u", idx, count);
71 error.SetErrorString("replace operation takes an array index followed by one or more path pairs");
80 error.SetErrorString("assign operation takes one or more path pairs");
88 error.SetErrorString("append operation takes one or more path pairs");
112 error.SetErrorStringWithFormat("invalid file list index %u, index must be 0 through %u", idx, count);
128 error.SetErrorString("insert operation takes an array index followed by one or more path pairs");
162 error.SetErrorStringWithFormat("invalid array index '%s', aborting remove operation", args.GetArgumentAt (…)
    [all...]
OptionValueUUID.cpp 39 Error
43 Error error; local
54 error.SetErrorStringWithFormat ("invalid uuid string value '%s'", value_cstr);
65 error = OptionValue::SetValueFromCString (value_cstr, op);
68 return error;
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
RegisterContextKDP_arm.cpp 39 Error error; local
40 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestReadRegisters (tid, GPRRegSet, &gpr, sizeof(gpr), error))
42 if (error.Success())
55 Error error; local
56 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestReadRegisters (tid, FPURegSet, &fpu, sizeof(fpu), error))
58 if (error.Success())
71 Error error; local
87 Error error; local
103 Error error; local
119 Error error; local
135 Error error; local
151 Error error; local
    [all...]
  /external/lldb/tools/lldb-platform/
lldb-platform.cpp 24 #include "lldb/Core/Error.h"
76 Error error; local
86 // status = a.BootstrapCheckIn(bootstrap_service_name, &error);
90 // fprintf(stderr, "%s", error.AsCString());
93 // status = b.BootstrapLookup (bootstrap_service_name, &error);
96 // fprintf(stderr, "%s", error.AsCString());
100 // if (a.Write ("hello", 5, status, &error) == 5)
104 // if (b.Read (buf, 5, status, &error))
110 // fprintf(stderr, "%s", error.AsCString())
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_core.h 60 uint32_t error; member in struct:rbug_proto_error
73 uint32_t error; member in struct:rbug_proto_error_reply
83 uint32_t error,
92 uint32_t error,
  /external/mesa3d/src/gallium/drivers/r300/
r300_tgsi_to_rc.h 51 /* If an error occured. */
52 boolean error; member in struct:tgsi_to_rc
  /external/mesa3d/src/glx/apple/
apple_glx_pixmap.c 117 /* Return true if an error occurred. */
126 CGLError error; local
169 error = apple_cgl.create_context(p->pixel_format_obj, NULL,
172 if (kCGLNoError != error) {
apple_visual.c 74 CGLError error = 0; local
160 error = apple_cgl.choose_pixel_format(attr, pfobj, &vsref);
162 if (error) {
163 fprintf(stderr, "error: %s\n", apple_cgl.error_string(error));
  /external/mockito/src/org/mockito/internal/verification/
VerificationWithTimeoutImpl.java 25 MockitoAssertionError error = null; local
31 error = e;
36 if (error != null) {
37 throw error;
  /external/openssh/openbsd-compat/
bindresvport.c 55 int error, af; local
95 error = -1;
100 error = bind(sd, sa, salen);
103 if (error == 0)
107 if ((error < 0) && !((errno == EADDRINUSE) || (errno == EINVAL)))
115 return (error);
strtonum.c 39 int error = 0; local
53 error = INVALID;
57 error = INVALID;
59 error = TOOSMALL;
61 error = TOOLARGE;
64 *errstrp = ev[error].errstr;
65 errno = ev[error].err;
66 if (error)
  /external/parameter-framework/tools/xmlValidator/
xmlValidator.py 43 def error(stringToPrint): member in class:PrintColor
91 PrintColor.error('Error: %s' % str(schema.error_log))
95 PrintColor.error('Error: usage %s xmlDirectory schemaDirectory' % str(argv[0]))

Completed in 288 milliseconds

1 2 3 4 5 6 7 8 91011>>