Home
last modified time | relevance | path

Searched refs:str_end (Results 1 – 5 of 5) sorted by relevance

/external/perfetto/src/traced/probes/android_log/
Dandroid_log_data_source.cc316 const char* str_end; in ParseTextEvent() local
317 for (str_end = buf; str_end < end && *str_end; str_end++) { in ParseTextEvent()
319 if (str_end >= end - 2) in ParseTextEvent()
322 auto tag = base::StringView(buf, static_cast<size_t>(str_end - buf)); in ParseTextEvent()
331 buf = str_end + 1; // Move |buf| to the start of the message. in ParseTextEvent()
/external/kmod/tools/
Dmodprobe.c680 char **new_argv, *str_start, *str_end, *str, *s, *quote; in prepend_options_from_env() local
701 str_end = str_start + envlen; in prepend_options_from_env()
724 for (it = s - 1; it < str_end - 2; it++) in prepend_options_from_env()
726 str_end -= 2; in prepend_options_from_env()
727 *str_end = '\0'; in prepend_options_from_env()
/external/python/cpython2/Modules/_io/
Dbytesio.c29 const char *str_end; in get_line() local
35 str_end = self->buf + self->string_size; in get_line()
37 n < str_end && *n != '\n'; in get_line()
41 if (n < str_end) in get_line()
/external/dtc/tests/
Dlabel01.dts41 prop: string = str: "foo", str_mid: "stuffstuff\t\t\t\n\n\n" str_end: ;
/external/mesa3d/src/compiler/glsl/
Dlink_uniforms.cpp593 const char *str_end; in set_opaque_indices() local
595 (str_end = strchr(name_copy, ']'))) { in set_opaque_indices()
596 memmove(str_start, str_end + 1, 1 + strlen(str_end + 1)); in set_opaque_indices()