| /Linux-v5.4/drivers/net/wireless/intel/iwlwifi/cfg/ | 
| D | 22000.c | 95 #define IWL_22000_HR_MODULE_FIRMWARE(api) \  argument 96 	IWL_22000_HR_FW_PRE __stringify(api) ".ucode" 97 #define IWL_22000_JF_MODULE_FIRMWARE(api) \  argument 98 	IWL_22000_JF_FW_PRE __stringify(api) ".ucode" 99 #define IWL_22000_HR_A_F0_QNJ_MODULE_FIRMWARE(api) \  argument 100 	IWL_22000_HR_A_F0_FW_PRE __stringify(api) ".ucode" 101 #define IWL_22000_QU_B_HR_B_MODULE_FIRMWARE(api) \  argument 102 	IWL_22000_QU_B_HR_B_FW_PRE __stringify(api) ".ucode" 103 #define IWL_22000_HR_B_QNJ_MODULE_FIRMWARE(api)	\  argument 104 	IWL_22000_HR_B_FW_PRE __stringify(api) ".ucode" [all …] 
 | 
| D | 2000.c | 37 #define IWL2030_MODULE_FIRMWARE(api) IWL2030_FW_PRE __stringify(api) ".ucode"  argument 40 #define IWL2000_MODULE_FIRMWARE(api) IWL2000_FW_PRE __stringify(api) ".ucode"  argument 43 #define IWL105_MODULE_FIRMWARE(api) IWL105_FW_PRE __stringify(api) ".ucode"  argument 46 #define IWL135_MODULE_FIRMWARE(api) IWL135_FW_PRE __stringify(api) ".ucode"  argument
  | 
| D | 7000.c | 96 #define IWL7260_MODULE_FIRMWARE(api) IWL7260_FW_PRE __stringify(api) ".ucode"  argument 99 #define IWL3160_MODULE_FIRMWARE(api) IWL3160_FW_PRE __stringify(api) ".ucode"  argument 102 #define IWL3168_MODULE_FIRMWARE(api) IWL3168_FW_PRE __stringify(api) ".ucode"  argument 105 #define IWL7265_MODULE_FIRMWARE(api) IWL7265_FW_PRE __stringify(api) ".ucode"  argument 108 #define IWL7265D_MODULE_FIRMWARE(api) IWL7265D_FW_PRE __stringify(api) ".ucode"  argument
  | 
| D | 6000.c | 46 #define IWL6000_MODULE_FIRMWARE(api) IWL6000_FW_PRE __stringify(api) ".ucode"  argument 49 #define IWL6050_MODULE_FIRMWARE(api) IWL6050_FW_PRE __stringify(api) ".ucode"  argument 52 #define IWL6005_MODULE_FIRMWARE(api) IWL6005_FW_PRE __stringify(api) ".ucode"  argument 55 #define IWL6030_MODULE_FIRMWARE(api) IWL6030_FW_PRE __stringify(api) ".ucode"  argument
  | 
| D | 1000.c | 31 #define IWL1000_MODULE_FIRMWARE(api) IWL1000_FW_PRE __stringify(api) ".ucode"  argument 34 #define IWL100_MODULE_FIRMWARE(api) IWL100_FW_PRE __stringify(api) ".ucode"  argument
  | 
| D | 8000.c | 88 #define IWL8000_MODULE_FIRMWARE(api) \  argument 89 	IWL8000_FW_PRE __stringify(api) ".ucode" 92 #define IWL8265_MODULE_FIRMWARE(api) \  argument 93 	IWL8265_FW_PRE __stringify(api) ".ucode"
  | 
| D | 5000.c | 33 #define IWL5000_MODULE_FIRMWARE(api) IWL5000_FW_PRE __stringify(api) ".ucode"  argument 36 #define IWL5150_MODULE_FIRMWARE(api) IWL5150_FW_PRE __stringify(api) ".ucode"  argument
  | 
| D | 9000.c | 78 #define IWL9000_MODULE_FIRMWARE(api) \  argument 79 	IWL9000_FW_PRE __stringify(api) ".ucode" 80 #define IWL9260_MODULE_FIRMWARE(api) \  argument 81 	IWL9260_FW_PRE __stringify(api) ".ucode"
  | 
| /Linux-v5.4/arch/arm64/kernel/probes/ | 
| D | decode-insn.c | 73 arm_probe_decode_insn(probe_opcode_t insn, struct arch_probe_insn *api)  in arm_probe_decode_insn()  argument 83 		api->handler = simulate_b_cond;  in arm_probe_decode_insn() 86 		api->handler = simulate_cbz_cbnz;  in arm_probe_decode_insn() 89 		api->handler = simulate_tbz_tbnz;  in arm_probe_decode_insn() 91 		api->handler = simulate_adr_adrp;  in arm_probe_decode_insn() 94 		api->handler = simulate_b_bl;  in arm_probe_decode_insn() 98 		api->handler = simulate_br_blr_ret;  in arm_probe_decode_insn() 100 		api->handler = simulate_ldr_literal;  in arm_probe_decode_insn() 102 		api->handler = simulate_ldrsw_literal;  in arm_probe_decode_insn() 157 	decoded = arm_probe_decode_insn(insn, &asi->api);  in arm_kprobe_decode_insn()
  | 
| D | kprobes.c | 53 	patch_text(p->ainsn.api.insn, p->opcode);  in arch_prepare_ss_slot() 55 	flush_icache_range((uintptr_t) (p->ainsn.api.insn),  in arch_prepare_ss_slot() 56 			   (uintptr_t) (p->ainsn.api.insn) +  in arch_prepare_ss_slot() 62 	p->ainsn.api.restore = (unsigned long) p->addr +  in arch_prepare_ss_slot() 69 	p->ainsn.api.restore = 0;  in arch_prepare_simulate() 76 	if (p->ainsn.api.handler)  in arch_simulate_insn() 77 		p->ainsn.api.handler((u32)p->opcode, (long)p->addr, regs);  in arch_simulate_insn() 102 		p->ainsn.api.insn = NULL;  in arch_prepare_kprobe() 106 		p->ainsn.api.insn = get_insn_slot();  in arch_prepare_kprobe() 107 		if (!p->ainsn.api.insn)  in arch_prepare_kprobe() [all …] 
 | 
| D | uprobes.c | 47 	switch (arm_probe_decode_insn(insn, &auprobe->api)) {  in arch_uprobe_analyze_insn() 114 	if (auprobe->api.handler)  in arch_uprobe_skip_sstep() 115 		auprobe->api.handler(insn, addr, regs);  in arch_uprobe_skip_sstep()
  | 
| /Linux-v5.4/Documentation/crypto/ | 
| D | api.rst | 11    api-skcipher 12    api-aead 13    api-digest 14    api-rng 15    api-akcipher 16    api-kpp
  | 
| D | index.rst | 24    api 25    api-samples
  | 
| /Linux-v5.4/Documentation/media/uapi/v4l/ | 
| D | selection-api.rst | 10 .. _selection-api: 19     selection-api-intro.rst 20     selection-api-targets.rst 21     selection-api-configuration.rst 22     selection-api-vs-crop-api.rst 23     selection-api-examples.rst
  | 
| /Linux-v5.4/Documentation/driver-api/i3c/ | 
| D | index.rst | 10    device-driver-api 11    master-driver-api
  | 
| /Linux-v5.4/Documentation/driver-api/thermal/ | 
| D | index.rst | 10    cpu-cooling-api 11    sysfs-api
  | 
| D | x86_pkg_temperature_thermal.rst | 43 are in milli-degree Celsius. Refer to "Documentation/driver-api/thermal/sysfs-api.rst" for
  | 
| /Linux-v5.4/Documentation/watchdog/ | 
| D | index.rst | 13     watchdog-api 14     watchdog-kernel-api
  | 
| /Linux-v5.4/Documentation/core-api/ | 
| D | index.rst | 14    kernel-api 33    mm-api
  | 
| /Linux-v5.4/tools/perf/Documentation/ | 
| D | Makefile | 22 …$(patsubst %.txt,%,$(filter-out technical/api-index-skel.txt technical/api-index.txt, $(wildcard t… 24 SP_ARTICLES += technical/api-index 272 	$(OUTPUT)technical/api-*.html $(OUTPUT)technical/api-index.txt		\
  | 
| /Linux-v5.4/Documentation/translations/ko_KR/ | 
| D | stable_api_nonsense.txt | 2 This is a version of Documentation/process/stable-api-nonsense.rst translated 15 Documentation/process/stable-api-nonsense.rst
  | 
| /Linux-v5.4/drivers/net/wireless/intel/iwlegacy/ | 
| D | 3945.h | 33 #define _IL3945_MODULE_FIRMWARE(api) IL3945_FW_PRE #api ".ucode"  argument 34 #define IL3945_MODULE_FIRMWARE(api) _IL3945_MODULE_FIRMWARE(api)  argument
  | 
| /Linux-v5.4/drivers/net/wireless/intel/iwlwifi/fw/ | 
| D | img.h | 119 	   iwl_ucode_tlv_api_t api)  in fw_has_api()  argument 121 	return test_bit((__force long)api, capabilities->_api);  in fw_has_api()
  | 
| /Linux-v5.4/Documentation/translations/zh_CN/process/ | 
| D | submitting-drivers.rst | 102 		Documentation/driver-api/pm/devices.rst。 143 		http://lwn.net/Articles/2.6-kernel-api/
  | 
| /Linux-v5.4/Documentation/translations/ja_JP/ | 
| D | stable_api_nonsense.txt | 2 This is a version of Documentation/process/stable-api-nonsense.rst into Japanese. 17 linux-2.6.22-rc4/Documentation/process/stable-api-nonsense.rst の和訳
  |