Home
last modified time | relevance | path

Searched refs:append_string (Results 1 – 25 of 31) sorted by relevance

12

/aosp_15_r20/external/libtracefs/src/
H A Dtracefs-hist.c882 __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 Dtracefs-filter.c139 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 Dlogfile.c39 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 Djose.c280 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 Djws.c78 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 Ddalvik_system_BaseDexClassLoader.cc30 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 Djwe.c73 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 Dfuture_test.cpp69 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/
Dstats_event.c192 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/
Dparsing.hpp453 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 Ddistribution.rs199 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 Dother.rs99 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/
Ddistribution.rs199 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()
Dother.rs99 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 Dlexer.lex.c_shipped2275 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 Dlexer.l56 static void append_string(const char *str, int size) in append_string() function
/aosp_15_r20/external/toybox/kconfig/
H A Dlex.zconf.c_shipped796 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/
Dbasic_xml_grammar.ipp129 struct append_string {
141 append_string(String & contents_)
288 xml::append_string<
/aosp_15_r20/external/angle/scripts/
H A Dgenerate_stats.py346 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 Dsnprintf.c196 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 Dinteractive_prompts.py57 history.append_string(line)
/aosp_15_r20/external/libtracefs/include/
H A Dtracefs-local.h92 char *append_string(char *str, const char *delim, const char *add);
/aosp_15_r20/external/guice/lib/build/
HDcglib-3.2.6.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/ ...
/aosp_15_r20/external/guice/extensions/persist/lib/
HDcglib-nodep-3.2.6.jarMETA-INF/MANIFEST.MF META-INF/LICENSE META-INF/NOTICE META- ...
/aosp_15_r20/prebuilts/devtools/tools/lib/
HDcglib-nodep-3.1.jarMETA-INF/MANIFEST.MF LICENSE NOTICE net/sf/cglib/beans/BeanCopier$ ...

12