HomeSort by relevance Sort by last modified time
    Searched refs:cstr_len (Results 1 - 11 of 11) sorted by null

  /external/lldb/scripts/Python/interface/
SBEvent.i 121 SBEvent (uint32_t event, const char *cstr, uint32_t cstr_len);
  /external/lldb/source/Core/
ConstString.cpp 90 GetConstCStringWithLength (const char *cstr, size_t cstr_len)
95 llvm::StringRef string_ref (cstr, cstr_len);
135 GetConstTrimmedCStringWithLength (const char *cstr, size_t cstr_len)
139 const size_t trimmed_len = std::min<size_t> (strlen (cstr), cstr_len);
215 ConstString::ConstString (const char *cstr, size_t cstr_len) :
216 m_string (StringPool().GetConstCStringWithLength (cstr, cstr_len))
294 size_t cstr_len = GetLength(); local
297 s->Printf("%*p: ConstString, string = %s%s%s, length = %" PRIu64, (int)sizeof(void*) * 2, this, parens, cstr, parens, (uint64_t)cstr_len);
326 ConstString::SetCStringWithLength (const char *cstr, size_t cstr_len)
328 m_string = StringPool().GetConstCStringWithLength(cstr, cstr_len);
    [all...]
Stream.cpp 133 size_t cstr_len = strlen(cstr); local
136 ++cstr_len;
137 return Write (cstr, cstr_len);
ValueObject.cpp 1131 size_t cstr_len = 0; local
    [all...]
  /external/lldb/source/Host/freebsd/
Host.cpp 160 size_t cstr_len = sizeof(cstr); local
161 if (::sysctl (mib, 2, cstr, &cstr_len, NULL, 0) == 0)
163 s.assign (cstr, cstr_len);
175 size_t cstr_len = sizeof(cstr); local
176 if (::sysctl (mib, 2, cstr, &cstr_len, NULL, 0) == 0)
178 s.assign (cstr, cstr_len);
  /external/lldb/include/lldb/API/
SBEvent.h 31 SBEvent (uint32_t event, const char *cstr, uint32_t cstr_len);
  /external/lldb/include/lldb/Core/
ConstString.h 430 /// Set the string value in the object by uniquing \a cstr_len bytes
432 /// If trim is true, then \a cstr_len indicates a maximum length of
443 /// @param[in] cstr_len
447 SetCStringWithLength (const char *cstr, size_t cstr_len);
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntime.cpp 163 size_t cstr_len = 0; local
169 curr_len = process->ReadCStringFromMemory(result_ptr + cstr_len, buf, sizeof(buf), error);
171 cstr_len += curr_len;
173 return cstr_len > 0;
  /external/lldb/source/API/
SBEvent.cpp 34 SBEvent::SBEvent (uint32_t event_type, const char *cstr, uint32_t cstr_len) :
35 m_event_sp (new Event (event_type, new EventDataBytes (cstr, cstr_len))),
  /external/lldb/scripts/Python/
python-typemaps.swig 70 // See also SBEvent::SBEvent(uint32_t event, const char *cstr, uint32_t cstr_len).
71 %typemap(in) (const char *cstr, uint32_t cstr_len) {
  /external/valgrind/main/perf/
tinycc.c 14098 int cstr_len, ch; local
    [all...]

Completed in 308 milliseconds