Home
last modified time | relevance | path

Searched refs:strlcat (Results 1 - 25 of 27) sorted by relevance

12

/third_party/alsa-utils/alsactl/
H A Dinit_sysfs.c48 strlcat(sysfs_test, "/kernel/uevent_seqnum", sizeof(sysfs_test)); in sysfs_init()
51 strlcat(sysfs_test, "/kernel/uevent_helper", sizeof(sysfs_test)); in sysfs_init()
87 strlcat(path_full, devpath, sizeof(path_full)); in sysfs_attr_get_value()
88 strlcat(path_full, "/", sizeof(path_full)); in sysfs_attr_get_value()
89 strlcat(path_full, attr_name, sizeof(path_full)); in sysfs_attr_get_value()
H A Dinit_parse.c285 strlcat(res, ",", sizeof(res)); in get_ctl_value()
286 strlcat(res, snd_ctl_elem_value_get_boolean(space->ctl_value, idx) ? "on" : "off", sizeof(res)); in get_ctl_value()
292 strlcat(res, ",", sizeof(res)); in get_ctl_value()
294 strlcat(res, tmp, sizeof(res)); in get_ctl_value()
300 strlcat(res, ",", sizeof(res)); in get_ctl_value()
302 strlcat(res, tmp, sizeof(res)); in get_ctl_value()
308 strlcat(res, ",", sizeof(res)); in get_ctl_value()
310 strlcat(res, tmp, sizeof(res)); in get_ctl_value()
686 strlcat(res, snd_ctl_elem_info_get_item_name(space->ctl_info), sizeof(res)); in elemid_get()
687 strlcat(re in elemid_get()
[all...]
H A Dinit_sysdeps.c41 static size_t strlcat(char *dst, const char *src, size_t size) in strlcat() function
H A Dinit_utils_run.c88 strlcat(program, argv[0], sizeof(program)); in run_program0()
/third_party/musl/libc-test/src/functional/
H A Dstring.c99 TEST(i, strlcat(b, "123", sizeof b), 6, "length %d != %d"); in main()
100 TEST_S(b, "abc123", "strlcat result"); in main()
103 TEST(i, strlcat(b, "123", 6), 6, "length %d != %d"); in main()
104 TEST_S(b, "abc12", "strlcat result"); in main()
105 TEST(i, b[6], 'x', "strlcat wrote past string %d != %d"); in main()
108 TEST(i, strlcat(b, "123", 4), 6, "length %d != %d"); in main()
109 TEST_S(b, "abc", "strlcat result"); in main()
112 TEST(i, strlcat(b, "123", 3), 6, "length %d != %d"); in main()
113 TEST_S(b, "abc", "strlcat result"); in main()
/third_party/python/Mac/Tools/
H A Dpythonw.c183 if (strlcat(real_path, slash, sizeof(real_path)) > sizeof(real_path)) { in main()
192 if (strlcat(real_path, "/", sizeof(real_path)) > sizeof(real_path)) { in main()
196 if (strlcat(real_path, path, sizeof(real_path)) > sizeof(real_path)) { in main()
/third_party/cups-filters/filter/foomatic-rip/
H A Dspooler.c180 strlcat(configfile, "/direct/.config", 1024); in find_default_printer()
184 strlcat(configfile, "/direct.conf", 1024); in find_default_printer()
202 strlcat(user_default_path, "/.foomatic/", 256); in init_direct()
H A Dfoomaticrip.c1030 strlcat(tmp, "/", 1024); in main()
1031 strlcat(tmp, cupsfilter, 1024); in main()
1035 strlcat(cupsfilter, " 0 '' '' 0 '%Y%X'", 256); in main()
1057 strlcat(tmp, "/gstoraster", 1024); in main()
1061 strlcat(gstoraster, " 0 '' '' 0 '%X'", 256); in main()
H A Dutil.c190 size_t strlcat(char *dest, const char *src, size_t size) in strlcat() function
323 strlcat(filepath, "/", PATH_MAX); in find_in_path()
324 strlcat(filepath, progname, PATH_MAX); in find_in_path()
367 strlcat(path, "/", len); in make_absolute_path()
368 strlcat(path, tmp, len); in make_absolute_path()
H A Dutil.h68 /* TODO check for platforms which already have strlcpy and strlcat */
77 size_t strlcat(char *dest, const char *src, size_t size);
/third_party/musl/src/string/
H A Dstrlcat.c4 size_t strlcat(char *d, const char *s, size_t n) in strlcat() function
/third_party/musl/porting/liteos_a/kernel/src/string/
H A Dstrlcat.c4 size_t strlcat(char *d, const char *s, size_t n) in strlcat() function
/third_party/musl/porting/linux/user/include/fortify/
H A Dstring.h153 size_t strlcat(char* const dest __DIAGNOSE_PASS_OBJECT_SIZE, const char* src, size_t size)
156 "'strlcat' called with size bigger than buffer")
161 return __DIAGNOSE_CALL_BYPASSING_FORTIFY(strlcat)(dest, src, size);
/third_party/musl/include/fortify/linux/
H A Dstring.h153 size_t strlcat(char* const dest __DIAGNOSE_PASS_OBJECT_SIZE, const char* src, size_t size)
156 "'strlcat' called with size bigger than buffer")
161 return __DIAGNOSE_CALL_BYPASSING_FORTIFY(strlcat)(dest, src, size);
/third_party/musl/porting/liteos_m/user/include/
H A Dstring.h83 size_t strlcat (char *, const char *, size_t);
/third_party/musl/porting/linux/user/include/
H A Dstring.h85 size_t strlcat (char *, const char *, size_t);
/third_party/musl/porting/uniproton/kernel/include/
H A Dstring.h83 size_t strlcat (char *, const char *, size_t);
/third_party/musl/include/
H A Dstring.h86 size_t strlcat (char *, const char *, size_t);
/third_party/musl/porting/liteos_m/kernel/include/
H A Dstring.h83 size_t strlcat (char *, const char *, size_t);
/third_party/musl/porting/liteos_a/kernel/include/
H A Dstring.h85 size_t strlcat (char *, const char *, size_t);
/third_party/musl/libc-test/src/functionalext/fortify/
H A Dstring_ext.c489 * @tc.desc : After adding fortify, test the normal strlcat of the function.
498 strlcat(dst, src, strlen(src)); in test_strlcat_0010()
504 * @tc.desc : Ability to test the strlcat Fortify runtime
523 strlcat(dst, src, strlen(src)); in test_strlcat_0020()
/third_party/musl/porting/linux/user/src/fortify/
H A Dfortify.c265 __diagnose_buffer_access("strlcat", "write into", supplied_size, dst_len_from_compiler); in __strlcat_chk()
266 return __DIAGNOSE_CALL_BYPASSING_FORTIFY(strlcat)(dest, src, supplied_size); in __strlcat_chk()
/third_party/musl/src/fortify/linux/
H A Dfortify.c276 __diagnose_buffer_access("strlcat", "write into", supplied_size, dst_len_from_compiler); in __strlcat_chk()
277 return __DIAGNOSE_CALL_BYPASSING_FORTIFY(strlcat)(dest, src, supplied_size); in __strlcat_chk()
/third_party/mksh/
H A Dos2.c306 strlcat(x_name, *x_suffix, x_namelen); in access_stat_ex()
/third_party/musl/Benchmark/musl/
H A Dlibc_string.cpp666 benchmark::DoNotOptimize(strlcat(dstBuf, srcBuf, nbytes)); in BM_function_Strlcat()

Completed in 13 milliseconds

12