Home
last modified time | relevance | path

Searched refs:target (Results 3001 - 3025 of 7861) sorted by relevance

1...<<121122123124125126127128129130>>...315

/kernel/linux/linux-6.6/drivers/net/wwan/iosm/
H A Diosm_ipc_protocol_ops.h55 * @target: 0=host, 1=device
59 unsigned int target; member
219 * @target: 0=host, 1=device, host or EP devie
220 * is the message target
231 u8 target; member
/kernel/linux/linux-6.6/drivers/gpu/drm/arm/display/komeda/
H A Dkomeda_dev.h222 komeda_product_match(struct komeda_dev *mdev, u32 target) in komeda_product_match() argument
224 return MALIDP_CORE_ID_PRODUCT_ID(mdev->chip.core_id) == target; in komeda_product_match()
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/core/
H A Dmemory.c137 nvkm_memory_new(struct nvkm_device *device, enum nvkm_memory_target target, in nvkm_memory_new() argument
145 if (unlikely(target != NVKM_MEM_TARGET_INST || !imem)) in nvkm_memory_new()
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/engine/dma/
H A Dusergf100.c103 if (dmaobj->base.target != NV_MEM_TARGET_VM) { in gf100_dmaobj_new()
120 switch (dmaobj->base.target) { in gf100_dmaobj_new()
H A Dusergf119.c100 if (dmaobj->base.target != NV_MEM_TARGET_VM) { in gf119_dmaobj_new()
114 switch (dmaobj->base.target) { in gf119_dmaobj_new()
124 * deal with the target themselves. in gf119_dmaobj_new()
/kernel/linux/linux-6.6/tools/perf/tests/
H A Dopenat-syscall-tp-fields.c30 .target = { in test__syscall_openat_tp_fields()
59 err = evlist__create_maps(evlist, &opts.target); in test__syscall_openat_tp_fields()
/kernel/linux/linux-6.6/net/netfilter/
H A Dxt_HL.c3 * TTL modification target for IP tables
6 * Hop Limit modification target for ip6tables
22 MODULE_DESCRIPTION("Xtables: Hoplimit/TTL Limit field modification target");
128 .target = ttl_tg,
138 .target = hl_tg6,
H A Dxt_LOG.c81 .target = log_tg,
91 .target = log_tg,
H A Dxt_AUDIT.c132 .target = audit_tg,
140 .target = audit_tg_ebt,
H A Dxt_SECMARK.c163 .target = secmark_tg_v0,
173 .target = secmark_tg_v1,
H A Dxt_TCPOPTSTRIP.c118 .target = tcpoptstrip_tg4,
128 .target = tcpoptstrip_tg6,
H A Dxt_MASQUERADE.c77 .target = masquerade_tg6,
88 .target = masquerade_tg,
H A Dxt_REDIRECT.c7 * Based on Rusty Russell's IPv4 REDIRECT target. Development of IPv6
85 .target = redirect_tg6,
96 .target = redirect_tg4,
/kernel/linux/linux-6.6/samples/bpf/
H A Doffwaketime_user.c42 char target[TASK_COMM_LEN]; member
53 printf("%s;", key->target); in print_stack()
/kernel/linux/linux-6.6/tools/perf/util/
H A Dprobe-event.h101 char *target; /* Target binary */ member
196 struct map *get_target_map(const char *target, struct nsinfo *nsi, bool user);
/kernel/linux/linux-6.6/tools/testing/selftests/drivers/net/bonding/
H A Dbond_macvlan.sh31 local target=${2}
36 ip netns exec ${ns} ping ${target} -c 4 -i 0.1 &>/dev/null
/kernel/liteos_a/arch/arm/gic/
H A Dgic_v2.c58 VOID HalIrqSendIpi(UINT32 target, UINT32 ipi) in HalIrqSendIpi() argument
60 GicWriteSgi(ipi, target, 0); in HalIrqSendIpi()
/third_party/eudev/test/
H A Dtest-udev.c52 const char *target; in fake_filesystems() member
78 err = mount(fakefss[i].src, fakefss[i].target, NULL, MS_BIND, NULL); in fake_filesystems()
/third_party/eudev/src/shared/
H A Dlog.h44 void log_set_target(LogTarget target);
129 const char *log_target_to_string(LogTarget target) _const_;
/third_party/gn/src/gn/
H A Dgenerated_file_target_generator.cc11 #include "gn/target.h"
15 Target* target, in GeneratedFileTargetGenerator()
20 : TargetGenerator(target, scope, function_call, err), output_type_(type) {} in GeneratedFileTargetGenerator()
31 function_call_, "generated_file target must have exactly one output.", in DoRun()
46 "The generated_file target requires either the \"contents\" variable " in DoRun()
76 "\"contents\" is defined on this target, and so setting " + in IsMetadataCollectionTarget()
14 GeneratedFileTargetGenerator( Target* target, Scope* scope, const FunctionCallNode* function_call, Target::OutputType type, Err* err) GeneratedFileTargetGenerator() argument
H A Dninja_generated_file_target_writer.cc15 #include "gn/target.h"
19 const Target* target, in NinjaGeneratedFileTargetWriter()
21 : NinjaTargetWriter(target, out) {} in NinjaGeneratedFileTargetWriter()
29 // A generated_file target should generate a stamp file with dependencies in Run()
30 // on each of the deps and data_deps in the target. The actual collection is in Run()
63 // If this is a metadata target, populate the write value with the appropriate in GenerateFile()
68 // get flagged on the right target. in GenerateFile()
18 NinjaGeneratedFileTargetWriter( const Target* target, std::ostream& out) NinjaGeneratedFileTargetWriter() argument
H A Dninja_copy_target_writer.cc15 #include "gn/target.h"
18 NinjaCopyTargetWriter::NinjaCopyTargetWriter(const Target* target, in NinjaCopyTargetWriter() argument
20 : NinjaTargetWriter(target, out) {} in NinjaCopyTargetWriter()
32 "\n used by target " + target_->label().GetUserVisibleName(false) + in Run()
44 "\n used by target " + target_->label().GetUserVisibleName(false) + in Run()
53 // General target-related substitutions needed by both tools. in Run()
106 // to avoid conflicts. This is also needed for data_deps on a copy target. in WriteCopyRules()
H A Dninja_target_command_util.h16 #include "gn/target.h"
88 // that supports precompiled headers, and this target supports precompiled
96 const Target* target,
110 void GetPCHOutputFiles(const Target* target,
/third_party/cJSON/tests/unity/auto/
H A Dunity_test_summary.rb29 results = @targets.map { |target| target.tr('\\', '/') }
/third_party/icu/icu4c/source/common/unicode/
H A Ducnv_err.h200 char *target; /**< Pointer to the target buffer. @stable ICU 2.0 */ member
201 const char *targetLimit; /**< Pointer to the limit (end + 1) of target buffer. @stable ICU 2.0 */
216 UChar *target; /**< Pointer to the target buffer. @stable ICU 2.0 */ member
217 const UChar *targetLimit; /**< Pointer to the limit (end + 1) of target buffer. @stable ICU 2.0 */

Completed in 13 milliseconds

1...<<121122123124125126127128129130>>...315