Searched defs:bytes_len (Results 1 - 10 of 10) sorted by relevance

/external/lldb/source/Core/
H A DInputReaderEZ.cpp20 size_t bytes_len)
25 bytes_len,
45 reader.GetUserInput().AppendString(bytes, bytes_len);
59 return bytes_len;
16 Callback_Impl(void *baton, InputReader &reader, lldb::InputReaderAction notification, const char *bytes, size_t bytes_len) argument
H A DInputReader.cpp107 InputReader::HandleRawBytes (const char *bytes, size_t bytes_len) argument
114 if (end_token >= bytes + bytes_len)
119 const char *end = bytes + bytes_len;
H A DDebugger.cpp845 Debugger::DispatchInputCallback (void *baton, const void *bytes, size_t bytes_len) argument
847 if (bytes_len > 0)
848 ((Debugger *)baton)->DispatchInput ((char *)bytes, bytes_len);
855 Debugger::DispatchInput (const char *bytes, size_t bytes_len) argument
857 if (bytes == NULL || bytes_len == 0)
860 WriteToDefaultReader (bytes, bytes_len);
934 Debugger::WriteToDefaultReader (const char *bytes, size_t bytes_len) argument
936 if (bytes && bytes_len)
937 m_input_reader_data.append (bytes, bytes_len);
/external/lldb/include/lldb/Core/
H A DInputReader.h32 size_t bytes_len);
38 size_t bytes_len; member in struct:lldb_private::InputReader::HandlerData
47 bytes_len(l),
220 HandleRawBytes (const char *bytes, size_t bytes_len);
/external/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp410 const size_t bytes_len = m_bytes.size(); local
413 for (idx = 1; !done && idx < bytes_len; ++idx)
/external/lldb/source/Commands/
H A DCommandObjectBreakpointCommand.cpp271 size_t bytes_len)
303 if (bytes && bytes_len && baton)
310 ((BreakpointOptions::CommandData *)bp_options_baton->m_data)->user_source.AppendString (bytes, bytes_len);
350 return bytes_len;
267 GenerateBreakpointCommandCallback(void *baton, InputReader &reader, lldb::InputReaderAction notification, const char *bytes, size_t bytes_len) argument
H A DCommandObjectWatchpointCommand.cpp249 size_t bytes_len)
281 if (bytes && bytes_len && callback_data)
288 ((WatchpointOptions::CommandData *)wp_options_baton->m_data)->user_source.AppendString (bytes, bytes_len);
328 return bytes_len;
245 GenerateWatchpointCommandCallback(void *callback_data, InputReader &reader, lldb::InputReaderAction notification, const char *bytes, size_t bytes_len) argument
H A DCommandObjectCommands.cpp1087 size_t bytes_len)
1112 while (bytes_len > 0 && (bytes[bytes_len-1] == '\r' || bytes[bytes_len-1] == '\n'))
1113 --bytes_len;
1114 if (bytes_len == 0)
1118 llvm::StringRef bytes_strref (bytes, bytes_len);
1156 return bytes_len;
1677 if (data.bytes && data.bytes_len)
1679 m_user_input.AppendString(data.bytes, data.bytes_len);
1083 InputReaderCallback(void *baton, InputReader &reader, lldb::InputReaderAction notification, const char *bytes, size_t bytes_len) argument
[all...]
H A DCommandObjectTarget.cpp4859 size_t bytes_len)
4895 if (bytes && bytes_len && baton)
4900 commands->AppendString (bytes, bytes_len);
4938 return bytes_len;
4855 ReadCommandsCallbackFunction(void *baton, InputReader &reader, lldb::InputReaderAction notification, const char *bytes, size_t bytes_len) argument
/external/lldb/source/Interpreter/
H A DScriptInterpreterPython.cpp294 size_t bytes_len)
422 bytes_len);
423 if (bytes && bytes_len)
424 ::write (script_interpreter->m_embedded_thread_pty.GetMasterFileDescriptor(), bytes, bytes_len);
432 bytes_len);
462 return bytes_len;
857 size_t bytes_len
958 bytes_len);
959 if (bytes && bytes_len)
964 ::write (script_interpreter->m_embedded_python_pty.GetMasterFileDescriptor(), bytes, bytes_len);
290 InputReaderCallback(void *baton, InputReader &reader, InputReaderAction notification, const char *bytes, size_t bytes_len) argument
[all...]

Completed in 236 milliseconds