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

<<31323334353637383940>>

  /external/lldb/source/DataFormatters/
NSArray.cpp 15 #include "lldb/Core/Error.h"
61 Error error; local
62 value = process_sp->ReadUnsignedIntegerFromMemory(valobj_addr + ptr_size, ptr_size, 0, error);
63 if (error.Fail())
68 Error error; local
69 value = process_sp->ReadUnsignedIntegerFromMemory(valobj_addr + ptr_size, ptr_size, 0, error);
70 if (error.Fail())
75 Error error local
153 Error error; local
247 Error error; local
298 Error error; local
    [all...]
NSSet.cpp 15 #include "lldb/Core/Error.h"
63 Error error; local
64 value = process_sp->ReadUnsignedIntegerFromMemory(valobj_addr + ptr_size, ptr_size, 0, error);
65 if (error.Fail())
71 Error error; local
72 value = process_sp->ReadUnsignedIntegerFromMemory(valobj_addr + ptr_size, ptr_size, 0, error);
73 if (error.Fail())
79 Error error
123 Error error; local
209 Error error; local
351 Error error; local
    [all...]
  /external/lldb/source/Expression/
ClangFunction.cpp 265 Error jit_error (m_parser->PrepareForExecution (m_jit_start_addr,
306 Error error; local
322 args_addr_ref = process->AllocateMemory(m_struct_size, lldb::ePermissionsReadable|lldb::ePermissionsWritable, error);
339 process->WriteScalarToMemory(args_addr_ref + first_offset, fun_addr, process->GetAddressByteSize(), error);
343 Error value_error;
370 if (!process->WriteScalarToMemory(args_addr_ref + offset, arg_scalar, arg_scalar.GetByteSize(), error))
412 // FIXME: Use the errors Stream for better error reporting.
460 Error error;
    [all...]
  /external/lldb/source/Interpreter/
OptionValueDictionary.cpp 100 Error
103 Error error; local
160 error.SetErrorStringWithFormat("invalid key \"%s\", the key must be a bare string or surrounded by brackets with optional quotes: [<key>] or ['<key>'] or [\"<key>\"]", kvp.first.str().c_str());
161 return error;
166 error));
169 if (error.Fail())
170 return error;
176 error.SetErrorString("dictionaries that can contain multiple types must subclass OptionValueArray");
181 error.SetErrorString("empty argument")
330 Error error; local
    [all...]
  /external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DYLDRendezvous.cpp 14 #include "lldb/Core/Error.h"
32 Error error; local
42 process->GetAddressByteSize(), error);
43 if (size != process->GetAddressByteSize() || error.Fail())
240 Error error; local
242 bytes_read = m_process->DoReadMemory(addr, dst, size, error);
243 if (bytes_read != size || error.Fail())
253 Error error local
    [all...]
  /external/lldb/source/Plugins/DynamicLoader/Static/
DynamicLoaderStatic.cpp 158 Error
161 Error error; local
162 error.SetErrorString ("can't load images on with a static debug session");
163 return error;
  /external/lldb/source/Plugins/OperatingSystem/Python/
OperatingSystemPython.cpp 110 Error error; local
111 if (m_interpreter->LoadScriptingModule (python_module_path_cstr, allow_reload, init_session, error))
  /external/lldb/source/Plugins/Platform/Linux/
PlatformLinux.cpp 21 #include "lldb/Core/Error.h"
148 Error
154 Error error; local
174 error.Clear();
178 error.SetErrorStringWithFormat("unable to find executable for '%s'", exe_path);
185 error = m_remote_platform_sp->ResolveExecutable (exe_file,
195 error.Clear();
197 error.SetErrorStringWithFormat("the platform is not currently connected, and '%s' doesn't exist in the system root.", exe_path);
201 if (error.Success()
404 Error error; local
    [all...]
  /external/lldb/source/Plugins/Platform/MacOSX/
PlatformiOSSimulator.cpp 18 #include "lldb/Core/Error.h"
169 strm.PutCString (" SDK Path: error: unable to locate SDK\n");
173 Error
179 Error error; local
199 error = ModuleList::GetSharedModule (module_spec,
206 return error;
217 error = ModuleList::GetSharedModule (module_spec,
223 if (error.Success())
228 error.SetErrorToGenericError()
322 Error error; local
370 Error error; local
    [all...]
  /external/lldb/tools/debugserver/source/
RNBSocket.cpp 86 DNBLogThreaded("error: failed to resolve connecting host '%s'", listen_host);
110 int error = ::bind (listen_fd, (struct sockaddr *) &sa, sizeof(sa)); local
111 if (error == -1)
137 error = ::listen (listen_fd, 5);
138 if (error == -1)
187 "error: rejecting incoming connection from %u.%u.%u.%u (expecting %u.%u.%u.%u)\n",
190 DNBLogThreaded ("error: rejecting connection from %u.%u.%u.%u (expecting %u.%u.%u.%u)",
232 DNBLogThreaded("error: failed to resolve host '%s'", host);
  /external/lldb/tools/lldb-perf/darwin/sketch/
sketch.cpp 103 fprintf(stderr, "error: file specified in --sketch (-c) option doesn't exist: '%s'\n", optarg);
113 fprintf(stderr, "error: file specified in --foobar (-f) option doesn't exist: '%s'\n", optarg);
123 fprintf (stderr, "error: unrecognized option %c\n", short_option);
139 bool error = false; local
144 error = true;
145 fprintf (stderr, "error: the '--sketch=PATH' option is mandatory\n");
151 error = true;
152 fprintf (stderr, "error: the '--foobar=PATH' option is mandatory\n");
155 if (error || GetPrintHelp())
170 if (error)
    [all...]
  /external/llvm/include/llvm/ProfileData/
CoverageMappingReader.h 83 /// \brief Return the error code.
84 std::error_code error(std::error_code EC) { return EC; } function in class:llvm::coverage::RawCoverageReader
86 /// \brief Clear the current error code and return a successful one.
87 std::error_code success() { return error(instrprof_error::success); }
  /external/llvm/lib/IR/
DataLayout.cpp 193 assert(!Str.empty() && "parse error, string can't be empty here");
202 /// Get an unsigned integer, including error checks.
205 bool error = R.getAsInteger(10, Result); (void)error; local
206 if (error)
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_init.c 190 char *error; local
194 &mod, &error);
248 char *error = NULL; local
262 &error);
265 (unsigned) optlevel, &error);
268 _debug_printf("%s\n", error);
269 LLVMDisposeMessage(error);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_format.c 255 int error = float_to_ubyte(test->unpacked[i][j][k]) - unpacked[k]; local
260 if (error < 0)
261 error = -error;
263 if (error > 1)
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r300_fragprog_emit.c 60 #define error(fmt, args...) do { \ macro
114 error("translate_rgb_opcode: Unknown opcode %s", rc_get_opcode_info(opcode)->Name);
136 error("translate_rgb_opcode: Unknown opcode %s", rc_get_opcode_info(opcode)->Name);
158 error("Too many ALU instructions");
331 error("Node %i has no TEX instructions", emit->current_node);
408 error("Too many texture indirections");
431 error("Too many TEX instructions");
444 error("Unknown texture opcode %s", rc_get_opcode_info(inst->U.I.Opcode)->Name);
490 inst != &compiler->Base.Program.Instructions && !compiler->Base.Error;
507 if (compiler->Base.Error)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
base.hpp 40 /// Class that represents an error that can be converted to an
43 class error : public std::runtime_error { class in namespace:clover
45 error(cl_int code, std::string what = "") : function in class:clover::error
  /external/mesa3d/src/gallium/state_trackers/vega/
api_params.c 73 VGErrorCode error = VG_NO_ERROR; local
123 error = VG_ILLEGAL_ARGUMENT_ERROR;
126 vg_set_error(ctx, error);
133 VGErrorCode error = VG_NO_ERROR; local
143 error = VG_ILLEGAL_ARGUMENT_ERROR;
150 error = VG_ILLEGAL_ARGUMENT_ERROR;
160 error = VG_ILLEGAL_ARGUMENT_ERROR;
167 error = VG_ILLEGAL_ARGUMENT_ERROR;
176 error = VG_ILLEGAL_ARGUMENT_ERROR;
192 error = VG_ILLEGAL_ARGUMENT_ERROR
266 VGErrorCode error = VG_NO_ERROR; local
517 VGErrorCode error = VG_NO_ERROR; local
579 VGErrorCode error = VG_NO_ERROR; local
    [all...]
  /external/mesa3d/src/gallium/tests/unit/
translate_test.c 67 const float error = 0.03125; local
91 printf("Error: CPU doesn't support SSE (test with qemu)\n");
103 printf("Error: CPU doesn't support SSE2 (test with qemu)\n");
114 printf("Error: CPU doesn't support SSE3 (test with qemu)\n");
124 printf("Error: CPU doesn't support SSE4.1 (test with qemu)\n");
281 if (d > error || d < -error)
u_format_test.c 42 float error = y - x; local
44 if (error < 0.0f)
45 error = -error;
47 if (error > FLT_EPSILON) {
  /external/mesa3d/src/mesa/drivers/dri/common/
drisw_util.c 102 unsigned *error,
180 flags, error, shareCtx)) {
193 unsigned error; local
196 &error, data);
  /external/mtpd/
mtpd.c 270 int error; local
274 error = getaddrinfo(server, port, &hints, &records);
275 if (error) {
276 log_print(FATAL, "Getaddrinfo() %s", (error == EAI_SYSTEM) ?
277 strerror(errno) : gai_strerror(error));
350 exit(1); /* Pretending a fatal error in pppd. */
  /external/netperf/
netserver.c 33 DOCUMENTATION IS ERROR FREE. HP DISCLAIMS ALL WARRANTIES,
444 int error; local
469 error = getaddrinfo((char *)hostname,
474 if (error == EAI_AGAIN) {
481 } while ((error == EAI_AGAIN) && (count <= 5));
483 if (error) {
490 error,
491 gai_strerror(error));
573 perror("netperf server error");
  /external/opencv/otherlibs/highgui/
cvcap_socket.cpp 130 int error = getaddrinfo(_address, _port, &hints, &pAddrInfo); local
131 if (error)
134 sprintf(buffer, "getaddrinfo error: %s", gai_strerror(error));
145 LOGV("out of memory error");
246 // out of data which we treat as an error.
  /external/pdfium/third_party/freetype/src/cff/
cf2ft.c 145 FT_Error error; local
161 error = cff_builder_start_point( builder,
164 if ( error )
166 if ( !*callbacks->error )
167 *callbacks->error = error;
173 error = cff_builder_add_point1( builder,
176 if ( error )
178 if ( !*callbacks->error )
179 *callbacks->error = error
189 FT_Error error; local
302 FT_Error error = FT_Err_Ok; local
578 FT_Error error; local
    [all...]

Completed in 400 milliseconds

<<31323334353637383940>>