/linux/drivers/usb/musb/ |
A D | musb_debugfs.c | 184 if (strstarts(buf, "force host full-speed")) in musb_test_mode_write() 187 else if (strstarts(buf, "force host high-speed")) in musb_test_mode_write() 190 else if (strstarts(buf, "force host")) in musb_test_mode_write() 193 else if (strstarts(buf, "fifo access")) in musb_test_mode_write() 196 else if (strstarts(buf, "force full-speed")) in musb_test_mode_write() 199 else if (strstarts(buf, "force high-speed")) in musb_test_mode_write() 202 else if (strstarts(buf, "test packet")) { in musb_test_mode_write() 207 else if (strstarts(buf, "test K")) in musb_test_mode_write() 210 else if (strstarts(buf, "test J")) in musb_test_mode_write() 213 else if (strstarts(buf, "test SE0 NAK")) in musb_test_mode_write()
|
A D | musb_cppi41.c | 689 if (strstarts(str, "tx")) in cppi41_dma_controller_start() 691 else if (strstarts(str, "rx")) in cppi41_dma_controller_start()
|
/linux/tools/perf/arch/x86/annotate/ |
A D | instructions.c | 154 if (arch->family >= 0x15 && (strstarts(ins1, "test") || in amd__ins_is_fused() 155 (strstarts(ins1, "cmp") && !strstr(ins1, "xchg")))) { in amd__ins_is_fused() 160 if (arch->family >= 0x19 && (strstarts(ins1, "add") || in amd__ins_is_fused() 161 strstarts(ins1, "sub") || strstarts(ins1, "and") || in amd__ins_is_fused() 162 strstarts(ins1, "inc") || strstarts(ins1, "dec") || in amd__ins_is_fused() 163 strstarts(ins1, "or") || strstarts(ins1, "xor"))) { in amd__ins_is_fused() 210 arch->ins_is_fused = strstarts(cpuid, "AuthenticAMD") ? in x86__cpuid_parse()
|
/linux/tools/perf/ |
A D | perf.c | 102 if (strstarts(var, "pager.") && !strcmp(var + 6, c->cmd)) in pager_command_config() 121 if (strstarts(var, "tui.") && !strcmp(var + 4, c->cmd)) in browser_command_config() 123 if (strstarts(var, "gtk.") && !strcmp(var + 4, c->cmd)) in browser_command_config() 211 if (strstarts(cmd, CMD_EXEC_PATH)) { in handle_options() 248 } else if (strstarts(cmd, CMD_DEBUGFS_DIR)) { in handle_options() 480 if (strstarts(cmd, "perf-")) { in main() 491 if (strstarts(cmd, "trace")) { in main() 509 if (strstarts(argv[0], "--")) in main()
|
A D | builtin-help.c | 99 if (!strstarts(buffer.buf, "emacsclient")) { in check_emacsclient_version() 292 if (strstarts(var, "man.")) in perf_help_config() 322 else if (strstarts(perf_cmd, "perf")) in cmd_to_page()
|
A D | builtin-config.c | 81 if (!strstarts(var, section->name)) in show_spec_config()
|
/linux/arch/arm/kernel/ |
A D | module.c | 59 return strstarts(name, ".init") || in module_init_section() 60 strstarts(name, ".ARM.extab.init") || in module_init_section() 61 strstarts(name, ".ARM.exidx.init"); in module_init_section() 66 return strstarts(name, ".exit") || in module_exit_section() 67 strstarts(name, ".ARM.extab.exit") || in module_exit_section() 68 strstarts(name, ".ARM.exidx.exit"); in module_exit_section()
|
/linux/scripts/mod/ |
A D | modpost.c | 364 if (strstarts(secname, "___ksymtab+")) in export_from_secname() 646 if (strstarts(symname, "_restgpr_") || in ignore_undef_symbol() 647 strstarts(symname, "_savegpr_") || in ignore_undef_symbol() 650 strstarts(symname, "_restvr_") || in ignore_undef_symbol() 651 strstarts(symname, "_savevr_")) in ignore_undef_symbol() 657 strstarts(symname, "_restvr_") || in ignore_undef_symbol() 658 strstarts(symname, "_savevr_") || in ignore_undef_symbol() 698 if (strstarts(symname, "__ksymtab")) in handle_symbol() 1224 strstarts(fromsym, "__param")) in secref_whitelist() 1255 if (strstarts(fromsym, ".L")) in secref_whitelist() [all …]
|
/linux/tools/perf/util/ |
A D | config.c | 474 if (strstarts(var, "core.")) in perf_default_config() 477 if (strstarts(var, "hist.")) in perf_default_config() 480 if (strstarts(var, "ui.")) in perf_default_config() 483 if (strstarts(var, "call-graph.")) in perf_default_config() 486 if (strstarts(var, "llvm.")) in perf_default_config() 489 if (strstarts(var, "buildid.")) in perf_default_config() 492 if (strstarts(var, "stat.")) in perf_default_config()
|
A D | sample-raw.c | 22 cpuid && strstarts(cpuid, "AuthenticAMD") && in evlist__init_trace_event_sample_raw()
|
A D | amd-sample-raw.c | 274 if (strstarts(name, "ibs_op")) in evlist__has_amd_ibs() 276 else if (strstarts(name, "ibs_fetch")) in evlist__has_amd_ibs()
|
A D | map.c | 32 return strstarts(filename, "/data/app-lib/") || in is_android_lib() 33 strstarts(filename, "/system/lib/"); in is_android_lib() 53 if (strstarts(filename, "/data/app-lib/")) { in replace_android_lib() 77 if (strstarts(filename, "/system/lib/")) { in replace_android_lib()
|
/linux/tools/lib/subcmd/ |
A D | parse-options.c | 393 if (strstarts(options->long_name, "no-")) { in parse_long_opt() 406 if (strstarts(options->long_name + 3, arg)) { in parse_long_opt() 431 if (strstarts("no-", arg)) { in parse_long_opt() 441 if (!rest && strstarts(options->long_name, arg + 3)) in parse_long_opt() 481 if (strstarts(arg, "no-")) { in check_typos() 489 if (strstarts(options->long_name, arg)) { in check_typos() 959 if (strstarts(opts->long_name, optstr)) in parse_options_usage() 961 if (strstarts("no-", optstr) && in parse_options_usage() 962 strstarts(opts->long_name, optstr + 3)) in parse_options_usage()
|
A D | help.c | 177 if (!strstarts(de->d_name, prefix)) in list_commands_in_dir()
|
/linux/drivers/firmware/efi/libstub/ |
A D | gop.c | 42 if (!strstarts(option, "mode=")) in parse_modenum() 68 if (strstarts(option, "rgb")) { in parse_res() 71 } else if (strstarts(option, "bgr")) { in parse_res() 93 if (!strstarts(option, "auto")) in parse_auto() 106 if (!strstarts(option, "list")) in parse_list()
|
/linux/tools/perf/arch/arm/util/ |
A D | pmu.c | 23 } else if (strstarts(pmu->name, ARM_SPE_PMU_NAME)) { in perf_pmu__get_default_config()
|
/linux/tools/perf/arch/x86/util/ |
A D | evsel.c | 27 if (env.cpuid && strstarts(env.cpuid, "AuthenticAMD")) in arch_evsel__fixup_new_cycles()
|
/linux/arch/mips/bcm47xx/ |
A D | board.c | 246 if (strstarts(buf1, e1->value1)) in bcm47xx_board_get_nvram() 254 if (!strstarts(buf1, e2->value1) && in bcm47xx_board_get_nvram()
|
/linux/tools/include/linux/ |
A D | string.h | 40 static inline bool strstarts(const char *str, const char *prefix) in strstarts() function
|
/linux/tools/perf/ui/browsers/ |
A D | scripts.c | 66 if (!strstarts(var, "scripts.")) in scripts_config()
|
/linux/drivers/gpu/drm/omapdrm/dss/ |
A D | base.c | 277 if (!strstarts(comp->compat, "omapdss,")) in omapdss_component_is_loaded()
|
/linux/include/linux/ |
A D | string.h | 214 static inline bool strstarts(const char *str, const char *prefix) in strstarts() function
|
/linux/drivers/memory/tegra/ |
A D | tegra20.c | 410 if (strstarts(node->name, "display") || in tegra20_mc_of_icc_xlate_extended() 411 strstarts(node->name, "vi")) in tegra20_mc_of_icc_xlate_extended()
|
/linux/scripts/dtc/ |
A D | dtc.h | 92 #define strstarts(s, prefix) (strncmp((s), (prefix), strlen(prefix)) == 0) macro
|
/linux/arch/mips/bcm63xx/boards/ |
A D | board_bcm963xx.c | 750 if (strstarts(cfe, "cfe-")) { in board_prom_init()
|