Searched refs:strstarts (Results 1 - 25 of 58) sorted by path

123

/linux-master/arch/arm/kernel/
H A Dmodule.c25 return strstarts(name, ".init") ||
26 strstarts(name, ".ARM.extab.init") ||
27 strstarts(name, ".ARM.exidx.init");
32 return strstarts(name, ".exit") ||
33 strstarts(name, ".ARM.extab.exit") ||
34 strstarts(name, ".ARM.exidx.exit");
/linux-master/arch/mips/bcm47xx/
H A Dboard.c254 if (strstarts(buf1, e1->value1))
262 if (!strstarts(buf1, e2->value1) &&
/linux-master/arch/mips/bcm63xx/boards/
H A Dboard_bcm963xx.c750 if (strstarts(cfe, "cfe-")) {
/linux-master/crypto/
H A Dessiv.c514 if (!strstarts(block_base->cra_name, "authenc(")) {
/linux-master/drivers/firmware/efi/libstub/
H A Defi-stub-helper.c101 val && strstarts(val, "efifb:")) {
H A Dgop.c42 if (!strstarts(option, "mode="))
68 if (strstarts(option, "rgb")) {
71 } else if (strstarts(option, "bgr")) {
93 if (!strstarts(option, "auto"))
106 if (!strstarts(option, "list"))
/linux-master/drivers/gpu/drm/omapdrm/dss/
H A Dbase.c277 if (!strstarts(comp->compat, "omapdss,"))
/linux-master/drivers/gpu/drm/renesas/rcar-du/
H A Drcar_du_crtc.c1056 } else if (strstarts(source_name, "plane")) {
/linux-master/drivers/hid/
H A Dhid-uclogic-params.c1268 if (strstarts(udev->product, "Deco LW"))
/linux-master/drivers/md/
H A Ddm-crypt.c2896 if (!strstarts(cipher_api, "authenc("))
3094 if (strstarts(cipher_in, "capi:"))
/linux-master/drivers/memory/tegra/
H A Dtegra20.c411 if (strstarts(node->name, "display") ||
412 strstarts(node->name, "vi"))
/linux-master/drivers/platform/x86/
H A Dacerhdf.c606 if (strstarts(vendor, bt->vendor) &&
607 strstarts(product, bt->product) &&
608 strstarts(version, bt->version)) {
H A Dthinkpad_acpi.c1347 if (strstarts(cmd, "enable"))
1349 else if (strstarts(cmd, "disable"))
4036 if (strstarts(cmd, "enable")) {
4038 } else if (strstarts(cmd, "disable")) {
4041 } else if (strstarts(cmd, "reset")) {
4952 if (strstarts(cmd, "lcd_enable")) {
4954 } else if (strstarts(cmd, "lcd_disable")) {
4956 } else if (strstarts(cmd, "crt_enable")) {
4958 } else if (strstarts(cmd, "crt_disable")) {
4961 strstarts(cm
[all...]
H A Dtouchscreen_dmi.c1828 strstarts(client->name, ts_data->acpi_name)) {
/linux-master/drivers/platform/x86/hp/hp-bioscfg/
H A Dspmobj-attributes.c54 if (!strstarts(authentication, BEAM_PREFIX))
75 if (strstarts(authentication, BEAM_PREFIX)) {
/linux-master/drivers/usb/musb/
H A Dmusb_cppi41.c689 if (strstarts(str, "tx"))
691 else if (strstarts(str, "rx"))
H A Dmusb_debugfs.c184 if (strstarts(buf, "force host full-speed"))
187 else if (strstarts(buf, "force host high-speed"))
190 else if (strstarts(buf, "force host"))
193 else if (strstarts(buf, "fifo access"))
196 else if (strstarts(buf, "force full-speed"))
199 else if (strstarts(buf, "force high-speed"))
202 else if (strstarts(buf, "test packet")) {
207 else if (strstarts(buf, "test K"))
210 else if (strstarts(buf, "test J"))
213 else if (strstarts(bu
[all...]
/linux-master/include/linux/
H A Dstring.h331 * strstarts - does @str start with @prefix?
335 static inline bool strstarts(const char *str, const char *prefix) function
/linux-master/kernel/module/
H A Dkallsyms.c71 if (strstarts(info->secstrings + sechdrs[sym->st_shndx].sh_name,
H A Dmain.c1640 return strstarts(name, ".init");
1645 return strstarts(name, ".exit");
/linux-master/scripts/dtc/
H A Ddtc.h92 #define strstarts(s, prefix) (strncmp((s), (prefix), strlen(prefix)) == 0) macro
H A Dflattree.c720 if (!strstarts(cpath, ppath))
/linux-master/scripts/mod/
H A Dmodpost.c359 #define strstarts(str, prefix) (strncmp(str, prefix, strlen(prefix)) == 0) macro
589 if (strstarts(symname, "_restgpr_") ||
590 strstarts(symname, "_savegpr_") ||
591 strstarts(symname, "_rest32gpr_") ||
592 strstarts(symname, "_save32gpr_") ||
593 strstarts(symname, "_restvr_") ||
594 strstarts(symname, "_savevr_"))
598 if (strstarts(symname, "_restgpr0_") ||
599 strstarts(symname, "_savegpr0_") ||
600 strstarts(symnam
[all...]
/linux-master/tools/include/linux/
H A Dstring.h36 * strstarts - does @str start with @prefix?
40 static inline bool strstarts(const char *str, const char *prefix) function
/linux-master/tools/lib/subcmd/
H A Dhelp.c199 if (!strstarts(de->d_name, prefix))

Completed in 858 milliseconds

123