Home
last modified time | relevance | path

Searched refs:str (Results 4251 - 4275 of 13098) sorted by relevance

1...<<171172173174175176177178179180>>...524

/kernel/linux/linux-6.6/tools/perf/scripts/python/Perf-Trace-Util/
H A DContext.c119 PyObject *str; in perf_set_itrace_options() local
121 c = get_args(args, "itrace_options", &str); in perf_set_itrace_options()
133 itrace_options = _PyUnicode_AsUTF8(str); in perf_set_itrace_options()
/kernel/liteos_a/fs/vfs/operation/
H A Dfullpath.c52 static unsigned int vfs_strnlen(const char *str, size_t maxlen) in vfs_strnlen() argument
56 for (p = str; ((maxlen-- != 0) && (*p != '\0')); ++p) {} in vfs_strnlen()
58 return p - str; in vfs_strnlen()
/kernel/linux/linux-6.6/sound/firewire/digi00x/
H A Ddigi00x-midi.c95 struct snd_rawmidi_str *str; in set_substream_names() local
99 str = &rmidi->streams[i]; in set_substream_names()
101 list_for_each_entry(subs, &str->substreams, list) { in set_substream_names()
/kernel/liteos_m/components/shell/src/cmds/
H A Dfullpath.c43 STATIC UINT32 VfsStrnlen(const CHAR *str, size_t maxlen) in VfsStrnlen() argument
47 for (p = str; ((maxlen-- != 0) && (*p != '\0')); ++p) {} in VfsStrnlen()
49 return p - str; in VfsStrnlen()
/kernel/uniproton/cmake/common/build_auxiliary_script/
H A DKconfig2macro.py45 name = ((str(file_name)).split('.'))[0]
46 header_macro = '%s_H' % (str.upper(name))
131 text = '#define %-35s NO \n\n' %(str)
/kernel/linux/linux-6.6/drivers/s390/net/
H A Dsmsgiucv.c24 void (*callback)(const char *from, char *str);
89 void (*callback)(const char *from, char *str)) in smsg_register_callback()
107 char *str)) in smsg_unregister_callback()
88 smsg_register_callback(const char *prefix, void (*callback)(const char *from, char *str)) smsg_register_callback() argument
105 smsg_unregister_callback(const char *prefix, void (*callback)(const char *from, char *str)) smsg_unregister_callback() argument
/kernel/linux/linux-6.6/mm/
H A Dusercopy.c260 static int __init parse_hardened_usercopy(char *str) in parse_hardened_usercopy() argument
262 if (kstrtobool(str, &enable_checks)) in parse_hardened_usercopy()
264 str); in parse_hardened_usercopy()
/kernel/linux/linux-6.6/samples/trace_events/
H A Dtrace-events-sample.h301 __string( str, string )
312 __assign_str(str, string);
362 __get_str(str), __get_bitmask(cpus), __get_cpumask(cpum),
/test/testfwk/xdevice/src/xdevice/_core/context/
H A Dhandler.py61 v = literal_eval(str(v))
99 ReportConstant.repeat: str(repeat),
100 ReportConstant.round: str(repeat_round),
/third_party/gn/src/base/
H A Dsha1.cc198 std::string SHA1HashString(const std::string& str) { in SHA1HashString() argument
200 SHA1HashBytes(reinterpret_cast<const unsigned char*>(str.c_str()), in SHA1HashString()
201 str.length(), reinterpret_cast<unsigned char*>(hash)); in SHA1HashString()
/third_party/gn/src/gn/
H A Dfilesystem_utils.h19 std::string FilePathToUTF8(const base::FilePath::StringType& str);
80 bool IsStringInOutputDir(const SourceDir& output_dir, const std::string& str);
90 const std::string& str,
H A Dstring_output_buffer_unittest.cc44 ASSERT_STREQ(data.c_str(), buffer.str().c_str()); in TEST()
61 ASSERT_STREQ(data.c_str(), buffer.str().c_str()); in TEST()
81 ASSERT_STREQ(data.c_str(), buffer.str().c_str()); in TEST()
/third_party/cJSON/tests/unity/auto/
H A Dunity_to_junit.py73 if str(tmp_tc_line['tc_status']) == 'IGNORE':
80 elif str(tmp_tc_line['tc_status']) == 'FAIL':
88 tc_list.append((str(result_file), tmp_tc))
/third_party/icu/icu4c/source/io/
H A Duprintf.cpp71 const UChar *str, in u_printf_write()
74 return u_file_write(str, count, (UFILE *)context); in u_printf_write()
212 u_printf_parse(&g_stream_handler, patternSpecification, f, NULL, &f->str.fBundle, &written, ap); in u_vfprintf_u()
70 u_printf_write(void *context, const UChar *str, int32_t count) u_printf_write() argument
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DUnescapeTransliterator.java238 String str = UTF16.valueOf(u); in handleTransliterate()
239 text.replace(start, s, str); in handleTransliterate()
240 limit -= s - start - str.length(); in handleTransliterate()
/third_party/FreeBSD/sys/dev/usb/
H A Dusb_debug.c249 char *str; in usb_debug_shell_cmd() local
259 str = argv[0]; in usb_debug_shell_cmd()
262 mod = get_debug_module(str); in usb_debug_shell_cmd()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/serializable/
H A DSerializableChecker.java83 public void visit(String str) in visit() argument
85 int ix = str.lastIndexOf(".class"); in visit()
88 String className = "ohos.global.icu" + str.substring(0, ix).replace('/', '.'); in visit()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
H A DSerializableChecker.java80 public void visit(String str) in visit() argument
82 int ix = str.lastIndexOf(".class"); in visit()
85 String className = "com.ibm.icu" + str.substring(0, ix).replace('/', '.'); in visit()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DUnescapeTransliterator.java239 String str = UTF16.valueOf(u); in handleTransliterate()
240 text.replace(start, s, str); in handleTransliterate()
241 limit -= s - start - str.length(); in handleTransliterate()
/third_party/icu/icu4c/source/common/
H A Dunistr_case.cpp227 const UnicodeString *str = (const UnicodeString*) key.pointer; in uhash_hashCaselessUnicodeString() local
228 if (str == NULL) { in uhash_hashCaselessUnicodeString()
233 UnicodeString copy(*str); in uhash_hashCaselessUnicodeString()
/third_party/lzma/CPP/Windows/
H A DSecurityUtils.h21 #define POLICY_FUNC_CALL(fff, str) \
23 const Func_ ## fff v = Z7_GET_PROC_ADDRESS(Func_ ## fff, hModule, str); \
29 #define POLICY_FUNC_CALL(fff, str) \
/third_party/mesa3d/src/freedreno/perfcntrs/
H A Dfreedreno_dt.c147 char *str = os_read_file(fpath, &sz); in find_device_fn() local
148 if (match_compatible(str, sz)) { in find_device_fn()
172 free(str); in find_device_fn()
/third_party/libwebsockets/minimal-examples/dbus-client/minimal-dbus-client/
H A Dminimal-dbus-client.c37 const char *str; in client_message_handler() local
45 DBUS_TYPE_STRING, &str, in client_message_handler()
49 lwsl_notice("%s: '%s'\n", __func__, str); in client_message_handler()
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_syscall_test/
H A Dcpuset_syscall_test.c167 char str[256]; in test_get_mempolicy() local
185 bitmask_displaylist(str, 256, nmask); in test_get_mempolicy()
186 puts(str); in test_get_mempolicy()
/third_party/node/deps/v8/tools/chrome/
H A Dlinux_perf.py97 options.renderer_cmd_prefix = str(renderer_cmd_file)
122 str(chrome_bin),
206 path_strings = map(lambda f: str(f.relative_to(old_cwd)), results)

Completed in 14 milliseconds

1...<<171172173174175176177178179180>>...524