/external/lldb/source/Core/ |
H A D | ConstString.cpp | 90 GetConstCStringWithLength (const char *cstr, size_t cstr_len) argument 95 llvm::StringRef string_ref (cstr, cstr_len); 135 GetConstTrimmedCStringWithLength (const char *cstr, size_t cstr_len) argument 139 const size_t trimmed_len = std::min<size_t> (strlen (cstr), cstr_len); 215 ConstString::ConstString (const char *cstr, size_t cstr_len) : argument 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) argument 328 m_string = StringPool().GetConstCStringWithLength(cstr, cstr_len); 332 SetTrimmedCStringWithLength(const char *cstr, size_t cstr_len) argument [all...] |
H A D | Stream.cpp | 133 size_t cstr_len = strlen(cstr); local 136 ++cstr_len; 137 return Write (cstr, cstr_len);
|
H A D | ValueObject.cpp | 1131 size_t cstr_len = 0; local 1139 cstr_len = array_size; 1140 if (cstr_len > max_length) 1143 cstr_len = max_length; 1163 if (cstr_len > 0 && honor_array) 1167 GetPointeeData(data, 0, cstr_len); 1189 cstr_len = max_length; 1216 if (len > cstr_len) 1217 len = cstr_len; 1232 if (len >= cstr_len) [all...] |
/external/lldb/scripts/Python/interface/ |
H A D | SBEvent.i | 121 SBEvent (uint32_t event, const char *cstr, uint32_t cstr_len);
|
/external/lldb/source/Host/freebsd/ |
H A D | 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/ |
H A D | SBEvent.h | 31 SBEvent (uint32_t event, const char *cstr, uint32_t cstr_len);
|
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | 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/ |
H A D | SBEvent.cpp | 34 SBEvent::SBEvent (uint32_t event_type, const char *cstr, uint32_t cstr_len) : argument 35 m_event_sp (new Event (event_type, new EventDataBytes (cstr, cstr_len))),
|
/external/lldb/include/lldb/Core/ |
H A D | 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/scripts/Python/ |
H A D | 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/perf/ |
H A D | tinycc.c | 14100 int cstr_len, ch; 14106 cstr_len = cstr->size; 14108 cstr_len = cstr->size / sizeof(int); 14109 cstr_len--; 14110 nb = cstr_len; 14114 if (cstr_len > nb) 14098 int cstr_len, ch; local
|