/aosp_15_r20/external/libtracefs/src/ |
H A D | tracefs-hist.c | 882 __hidden char *append_string(char *str, const char *space, const char *add) in append_string() function 919 str = append_string(str, " ", name); in add_synth_field() 920 str = append_string(str, NULL, "["); in add_synth_field() 924 str = append_string(str, NULL, size); in add_synth_field() 926 return append_string(str, NULL, "];"); in add_synth_field() 934 str = append_string(str, " ", name); in add_synth_field() 935 return append_string(str, NULL, ";"); in add_synth_field() 971 str = append_string(str, " ", name); in add_synth_field() 972 return append_string(str, NULL, ";"); in add_synth_field() 1038 format = append_string(format, i ? " " : NULL, field); in alloc_synthetic_event() [all …]
|
H A D | tracefs-filter.c | 139 tmp = append_string(tmp, NULL, conj); in append_filter() 159 tmp = append_string(tmp, NULL, "!"); in append_filter() 182 tmp = append_string(tmp, NULL, "("); in append_filter() 208 tmp = append_string(tmp, NULL, ")"); in append_filter() 233 tmp = append_string(tmp, NULL, field_name); in append_filter() 239 case TRACEFS_COMPARE_EQ: tmp = append_string(tmp, NULL, " == "); break; in append_filter() 240 case TRACEFS_COMPARE_NE: tmp = append_string(tmp, NULL, " != "); break; in append_filter() 244 tmp = append_string(tmp, NULL, "~"); in append_filter() 252 case TRACEFS_COMPARE_GT: tmp = append_string(tmp, NULL, " > "); break; in append_filter() 253 case TRACEFS_COMPARE_GE: tmp = append_string(tmp, NULL, " >= "); break; in append_filter() [all …]
|
/aosp_15_r20/external/e2fsprogs/e2fsck/ |
H A D | logfile.c | 39 static void append_string(struct string *s, const char *a, int len) in append_string() function 87 append_string(s, "%", 1); in expand_percent_expression() 120 append_string(s, cp, 0); in expand_percent_expression() 146 append_string(s, pw->pw_name, 0); in expand_percent_expression() 162 append_string(s, buf, 0); in expand_percent_expression() 181 append_string(s, cp, i); in expand_logfn() 318 append_string(&s1, log_dir, 0); in set_up_log_file() 319 append_string(&s1, "/", 1); in set_up_log_file() 320 append_string(&s1, s.s, 0); in set_up_log_file() 328 append_string(&s2, log_dir, 0); in set_up_log_file() [all …]
|
/aosp_15_r20/external/libwebsockets/lib/jose/jws/ |
H A D | jose.c | 280 goto append_string; in lws_jws_jose_cb() 299 goto append_string; in lws_jws_jose_cb() 312 goto append_string; in lws_jws_jose_cb() 318 goto append_string; in lws_jws_jose_cb() 323 goto append_string; in lws_jws_jose_cb() 328 goto append_string; in lws_jws_jose_cb() 333 goto append_string; in lws_jws_jose_cb() 337 goto append_string; in lws_jws_jose_cb() 347 append_string: in lws_jws_jose_cb()
|
H A D | jws.c | 78 goto append_string; in lws_jws_json_cb() 81 goto append_string; in lws_jws_json_cb() 84 goto append_string; in lws_jws_json_cb() 95 append_string: in lws_jws_json_cb()
|
/aosp_15_r20/art/runtime/native/ |
H A D | dalvik_system_BaseDexClassLoader.cc | 30 static bool append_string(Thread* self, in append_string() function 65 if (!append_string(self, array, i, classpath) || !append_string(self, array, i, context)) { in BaseDexClassLoader_computeClassLoaderContextsNative()
|
/aosp_15_r20/external/libwebsockets/lib/jose/jwe/ |
H A D | jwe.c | 73 goto append_string; in lws_jwe_json_cb() 76 goto append_string; in lws_jwe_json_cb() 79 goto append_string; in lws_jwe_json_cb() 82 goto append_string; in lws_jwe_json_cb() 85 goto append_string; in lws_jwe_json_cb() 93 append_string: in lws_jwe_json_cb()
|
/aosp_15_r20/frameworks/native/libs/ftl/ |
H A D | future_test.cpp | 69 std::packaged_task<ByteVector(std::string)> append_string([](std::string str) { in TEST() local 87 auto append = append_string.get_future(); in TEST() 88 append_thread = std::thread(std::move(append_string), std::move(str)); in TEST()
|
/aosp_15_r20/packages/modules/StatsD/lib/libstatssocket/ |
D | stats_event.c | 192 static void append_string(AStatsEvent* event, const char* buf) { in append_string() function 243 append_string(event, value == NULL ? "" : value); in AStatsEvent_writeString() 259 append_string(event, tags[i] == NULL ? "" : tags[i]); in AStatsEvent_writeAttributionChain() 322 append_string(event, elements[i] == NULL ? "" : elements[i]); in AStatsEvent_writeStringArray()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/format/include/boost/format/ |
D | parsing.hpp | 453 void append_string(String& dst, const String& src, in append_string() function 496 io::detail::append_string(piece, buf, i0, i1+1); in parse() 503 io::detail::append_string(piece, buf, i0, i1); in parse() 531 io::detail::append_string(piece, buf, i0, buf.size()); in parse()
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/rand-0.8.5/src/distributions/ |
H A D | distribution.rs | 199 fn append_string<R: Rng + ?Sized>(&self, rng: &mut R, string: &mut String, len: usize); in append_string() method 205 self.append_string(rng, &mut s, len); in sample_string()
|
H A D | other.rs | 99 fn append_string<R: Rng + ?Sized>(&self, rng: &mut R, s: &mut String, len: usize) { in append_string() method 129 fn append_string<R: Rng + ?Sized>(&self, rng: &mut R, string: &mut String, len: usize) { in append_string() method
|
/aosp_15_r20/external/rust/android-crates-io/crates/rand/src/distributions/ |
D | distribution.rs | 199 fn append_string<R: Rng + ?Sized>(&self, rng: &mut R, string: &mut String, len: usize); in append_string() method 205 self.append_string(rng, &mut s, len); in sample_string()
|
D | other.rs | 99 fn append_string<R: Rng + ?Sized>(&self, rng: &mut R, s: &mut String, len: usize) { in append_string() method 129 fn append_string<R: Rng + ?Sized>(&self, rng: &mut R, string: &mut String, len: usize) { in append_string() method
|
/aosp_15_r20/external/coreboot/util/kconfig/ |
H A D | lexer.lex.c_shipped | 2275 static void append_string(const char *str, int size) 2789 append_string(yytext, yyleng); 2795 append_string(yytext + 1, yyleng - 1); 2806 append_string(yytext, 1); 2848 append_string(" ", 8); 2851 append_string(" ", ts); 2871 append_string("\n", 1); 2882 append_string(yytext, yyleng); 3946 append_string(in, n); 3955 append_string(&c2, 1); [all …]
|
H A D | lexer.l | 56 static void append_string(const char *str, int size) in append_string() function
|
/aosp_15_r20/external/toybox/kconfig/ |
H A D | lex.zconf.c_shipped | 796 void append_string(const char *str, int size) 1155 append_string(zconftext, zconfleng); 1163 append_string(zconftext, zconfleng); 1173 append_string(zconftext + 1, zconfleng - 1); 1181 append_string(zconftext + 1, zconfleng - 1); 1192 append_string(zconftext, 1); 1229 append_string(" ", 8); 1232 append_string(" ", ts); 1253 append_string("\n", 1); 1259 append_string(zconftext, zconfleng);
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/serialization/src/ |
D | basic_xml_grammar.ipp | 129 struct append_string { 141 append_string(String & contents_) 288 xml::append_string<
|
/aosp_15_r20/external/angle/scripts/ |
H A D | generate_stats.py | 346 append_string = '\n' + line_columns[2].strip() 349 if len(step_info[key]) + len(append_string) < 50000: 350 step_info[key] += append_string
|
/aosp_15_r20/external/tcpdump/missing/ |
H A D | snprintf.c | 196 append_string (struct state *state, in append_string() function 339 if (append_string(state, in xyzprintf()
|
/aosp_15_r20/external/pigweed/pw_cli/py/pw_cli/ |
H A D | interactive_prompts.py | 57 history.append_string(line)
|
/aosp_15_r20/external/libtracefs/include/ |
H A D | tracefs-local.h | 92 char *append_string(char *str, const char *delim, const char *add);
|
/aosp_15_r20/external/guice/lib/build/ |
HD | cglib-3.2.6.jar | META-INF/
META-INF/MANIFEST.MF
net/
net/sf/
net/ ... |
/aosp_15_r20/external/guice/extensions/persist/lib/ |
HD | cglib-nodep-3.2.6.jar | META-INF/MANIFEST.MF
META-INF/LICENSE
META-INF/NOTICE
META- ... |
/aosp_15_r20/prebuilts/devtools/tools/lib/ |
HD | cglib-nodep-3.1.jar | META-INF/MANIFEST.MF
LICENSE
NOTICE
net/sf/cglib/beans/BeanCopier$ ... |