/kernel/linux/linux-6.6/net/tipc/ |
H A D | netlink_compat.c | 166 static struct sk_buff *tipc_get_err_tlv(char *str) in tipc_get_err_tlv() argument 168 int str_len = strlen(str) + 1; in tipc_get_err_tlv() 173 tipc_add_tlv(buf, TIPC_TLV_ERROR_STRING, str, str_len); in tipc_get_err_tlv() 698 nla_strscpy(link_info.str, link[TIPC_NLA_LINK_NAME], in tipc_nl_compat_link_dump()
|
/kernel/linux/linux-6.6/sound/core/ |
H A D | pcm.c | 1024 const char *str; in pcm_class_show() local 1033 str = "none"; in pcm_class_show() 1035 str = strs[pcm->dev_class]; in pcm_class_show() 1036 return sysfs_emit(buf, "%s\n", str); in pcm_class_show()
|
/kernel/linux/linux-6.6/drivers/s390/char/ |
H A D | sclp.c | 184 static int __init sclp_setup_console_pages(char *str) in sclp_setup_console_pages() argument 188 rc = kstrtoint(str, 0, &pages); in sclp_setup_console_pages() 196 static int __init sclp_setup_console_drop(char *str) in sclp_setup_console_drop() argument 198 return kstrtobool(str, &sclp_console_drop) == 0; in sclp_setup_console_drop()
|
/kernel/linux/linux-6.6/lib/ |
H A D | test_bitmap.c | 164 const char *exp_str, const char *str, in __check_eq_str() 169 eq = strncmp(exp_str, str, len) == 0; in __check_eq_str() 171 pr_err("[%s:%u] expected %s, got %s\n", srcfile, line, exp_str, str); in __check_eq_str() 193 #define expect_eq_str(...) __expect_eq(str, ##__VA_ARGS__) 163 __check_eq_str(const char *srcfile, unsigned int line, const char *exp_str, const char *str, unsigned int len) __check_eq_str() argument
|
/third_party/elfutils/libcpu/ |
H A D | riscv_disasm.c | 55 #define ADD_STRING(str) \ 57 const char *_str0 = (str); \ 62 #define ADD_NSTRING(str, len) \ 64 const char *_str = (str); \
|
/third_party/eudev/src/udev/ |
H A D | udevd.c | 701 const char *str; in handle_ctrl_msg() local 736 str = udev_ctrl_get_set_env(ctrl_msg); in handle_ctrl_msg() 737 if (str != NULL) { in handle_ctrl_msg() 740 key = strdup(str); in handle_ctrl_msg()
|
/third_party/ffmpeg/libavformat/ |
H A D | libsrt.c | 110 { "passphrase", "Crypto PBKDF2 Passphrase size[0,10..64] 0:disable crypto", OFFSET(passphrase), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = D|E }, 138 { "streamid", "A string of up to 512 characters that an Initiator can pass to a Responder", OFFSET(streamid), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = D|E }, 139 { "srt_streamid", "A string of up to 512 characters that an Initiator can pass to a Responder", OFFSET(streamid), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = D|E }, 140 { "smoother", "The type of Smoother used for the transmission for that socket", OFFSET(smoother), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = D|E },
|
H A D | avienc.c | 495 char* str = av_asprintf("Subtitle - %s-xx;02", langstr); in avi_write_header() local 496 if (!str) in avi_write_header() 498 ff_riff_write_info_tag(s->pb, "strn", str); in avi_write_header() 499 av_free(str); in avi_write_header()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_pseudocolor.c | 226 { "c0", "set component #0 expression", OFFSET(comp_expr_str[0]), AV_OPT_TYPE_STRING, {.str="val"}, .flags = FLAGS }, 227 { "c1", "set component #1 expression", OFFSET(comp_expr_str[1]), AV_OPT_TYPE_STRING, {.str="val"}, .flags = FLAGS }, 228 { "c2", "set component #2 expression", OFFSET(comp_expr_str[2]), AV_OPT_TYPE_STRING, {.str="val"}, .flags = FLAGS }, 229 { "c3", "set component #3 expression", OFFSET(comp_expr_str[3]), AV_OPT_TYPE_STRING, {.str="val"}, .flags = FLAGS },
|
/third_party/EGL/api/ |
H A D | reg.py | 13 file.write(' '.join([str(arg) for arg in args])) 18 # str - string to convert 19 def noneStr(str): 20 if (str): 21 return str
|
/third_party/cups-filters/filter/ |
H A D | imagetopdf.c | 90 static void outPdf(const char *str); 267 static void outPdf(const char *str) in outPdf() argument 269 unsigned long len = strlen(str); in outPdf() 271 fputs(str,stdout); in outPdf()
|
/third_party/curl/lib/ |
H A D | c-hyper.c | 1065 if(data->set.str[STRING_USERAGENT] && in Curl_http() 1066 *data->set.str[STRING_USERAGENT] && in Curl_http() 1133 data->set.str[STRING_ENCODING]) { in Curl_http() 1136 aprintf("Accept-Encoding: %s\r\n", data->set.str[STRING_ENCODING]); in Curl_http()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | cbiapts.c | 95 UChar str[1]; member 128 ucnv_toUChars(cnv, dest->str, numUChars+1, src, -1, &status); in toUChar() 130 u_strcpy(dest->str, stackBuf); in toUChar() 145 return dest->str; in toUChar()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | DateIntervalFormatTest.java | 932 StringBuffer str = new StringBuffer(""); in expectUserCLDR() 938 dtitvfmt.format(fromCalendar, toCalendar, str, pos); in expectUserCLDR() 1106 StringBuffer str = new StringBuffer(""); in stress() 1111 dtfmt.intervalFormatByAlgorithm(fromCalendar, toCalendar, str, pos); in stress()
|
/third_party/libsnd/src/ |
H A D | caf.c | 829 string_hash32 (const char * str) in string_hash32() argument 832 while (str [0]) in string_hash32() 833 { hash = hash * 333 + str [0] ; in string_hash32() 834 str ++ ; in string_hash32()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_sqtt.c | 931 const char *str, int len) in si_write_user_event() 934 assert (str == NULL); in si_write_user_event() 941 assert (str != NULL); in si_write_user_event() 950 memcpy(buffer + sizeof(marker), str, len); in si_write_user_event() 929 si_write_user_event(struct si_context* sctx, struct radeon_cmdbuf *rcs, enum rgp_sqtt_marker_user_event_type type, const char *str, int len) si_write_user_event() argument
|
/third_party/mesa3d/src/gallium/frontends/clover/spirv/ |
H A D | invocation.cpp | 177 std::string str(source.data() + (i + 2u) * sizeof(uint32_t)); in create_binary_from_spirv() 178 if (str.find("kernel_arg_type.") != 0) in create_binary_from_spirv() 182 std::istringstream istream(str.substr(16)); in create_binary_from_spirv() 927 const std::string disassemblyStr = disassembly->str; in print_module()
|
/third_party/node/deps/v8/tools/mb/ |
H A D | mb.py | 623 phase = str(self.args.phase) 973 % (repr(gn_outp_str), str(e))) 1084 return str(e) 1091 build = builds[str(successes[0])]
|
/third_party/node/src/ |
H A D | node_http_parser.cc | 149 void Update(const char* str, size_t size) { in Update() 151 str_ = str; in Update() 152 } else if (on_heap_ || str_ + size_ != str) { in Update() 157 memcpy(s + size_, str, size); in Update()
|
H A D | util.h | 679 std::string_view str, 724 #define READONLY_STRING_PROPERTY(obj, name, str) \ 725 READONLY_PROPERTY(obj, name, ToV8Value(context, str).ToLocalChecked()) 837 static constexpr size_t HashImpl(std::string_view str);
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | cmake.py | 39 _maketrans = str.maketrans 361 action_name = rule_name + "_" + str(count) 379 output_name = action_name + "_" + str(output_index) 1050 "" if isinstance(xcode_value, str) else " ",
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
H A D | cmake.py | 39 _maketrans = str.maketrans 361 action_name = rule_name + "_" + str(count) 379 output_name = action_name + "_" + str(output_index) 1047 "" if isinstance(xcode_value, str) else " ",
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | tsmthred.cpp | 403 UnicodeString str; in doStuff() local 413 nf->format(f, str, NULL, status); in doStuff() 415 if(*o != str) { in doStuff() 416 appendErr.append(showDifference(*o, str)); in doStuff()
|
/third_party/libfuse/example/ |
H A D | cxxopts.hpp | 1568 return std::make_tuple(long_.str(), short_.str()); in operator ()() 1572 return std::make_tuple(short_.str(), long_.str()); in operator ()()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-date.cc | 28 double ParseDateTimeString(Isolate* isolate, Handle<String> str) { in ParseDateTimeString() argument 29 str = String::Flatten(isolate, str); in ParseDateTimeString() 32 String::FlatContent str_content = str->GetFlatContent(no_gc); in ParseDateTimeString()
|