| /kernel/linux/linux-6.6/fs/sysfs/ |
| H A D | symlink.c | 24 struct kernfs_node *kn, *target = NULL; in sysfs_do_create_link_sd() local 36 target = target_kobj->sd; in sysfs_do_create_link_sd() 37 kernfs_get(target); in sysfs_do_create_link_sd() 41 if (!target) in sysfs_do_create_link_sd() 44 kn = kernfs_create_link(parent, name, target); in sysfs_do_create_link_sd() 45 kernfs_put(target); in sysfs_do_create_link_sd() 58 * @target: object we're pointing to. 61 int sysfs_create_link_sd(struct kernfs_node *kn, struct kobject *target, in sysfs_create_link_sd() argument 64 return sysfs_do_create_link_sd(kn, target, name, 1); in sysfs_create_link_sd() 67 static int sysfs_do_create_link(struct kobject *kobj, struct kobject *target, in sysfs_do_create_link() argument 89 sysfs_create_link(struct kobject *kobj, struct kobject *target, const char *name) sysfs_create_link() argument 105 sysfs_create_link_nowarn(struct kobject *kobj, struct kobject *target, const char *name) sysfs_create_link_nowarn() argument [all...] |
| /third_party/libwebsockets/lib/core-net/ |
| H A D | state.c | 92 _lws_state_transition(lws_state_manager_t *mgr, int target) in _lws_state_transition() argument 98 if (_report(mgr, mgr->state, target)) in _lws_state_transition() 104 mgr->state, _systnm(mgr, mgr->state, temp8), target, in _lws_state_transition() 105 _systnm(mgr, target, temp8)); in _lws_state_transition() 108 mgr->state = target; in _lws_state_transition() 111 _report(mgr, target, target); in _lws_state_transition() 117 mgr->state_names[target]); in _lws_state_transition() 124 lws_state_transition_steps(lws_state_manager_t *mgr, int target) in lws_state_transition_steps() argument 132 if (mgr->state > target) in lws_state_transition_steps() 147 lws_state_transition(lws_state_manager_t *mgr, int target) lws_state_transition() argument [all...] |
| /third_party/typescript/tests/baselines/reference/ |
| H A D | decoratedDefaultExportsGetExportedUmd.js | 17 var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
18 var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
19 if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
20 else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
21 return c > 3 && r && Object.defineProperty(target, key, r), r;
43 var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
44 var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, ke [all...] |
| H A D | decoratedClassFromExternalModule.js | 4 function decorate(target: any) { } 13 var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
14 var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
15 if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
16 else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
17 return c > 3 && r && Object.defineProperty(target, key, r), r;
19 function decorate(target) { }
|
| /kernel/linux/linux-5.10/drivers/scsi/ibmvscsi_tgt/ |
| H A D | libsrp.c | 20 #include <target/target_core_base.h> 104 int srp_target_alloc(struct srp_target *target, struct device *dev, in srp_target_alloc() argument 109 spin_lock_init(&target->lock); in srp_target_alloc() 111 target->dev = dev; in srp_target_alloc() 113 target->srp_iu_size = iu_size; in srp_target_alloc() 114 target->rx_ring_size = nr; in srp_target_alloc() 115 target->rx_ring = srp_ring_alloc(target->dev, nr, iu_size); in srp_target_alloc() 116 if (!target->rx_ring) in srp_target_alloc() 118 err = srp_iu_pool_alloc(&target in srp_target_alloc() 130 srp_target_free(struct srp_target *target) srp_target_free() argument 138 srp_iu_get(struct srp_target *target) srp_iu_get() argument [all...] |
| /kernel/linux/linux-6.6/drivers/scsi/ibmvscsi_tgt/ |
| H A D | libsrp.c | 20 #include <target/target_core_base.h> 104 int srp_target_alloc(struct srp_target *target, struct device *dev, in srp_target_alloc() argument 109 spin_lock_init(&target->lock); in srp_target_alloc() 111 target->dev = dev; in srp_target_alloc() 113 target->srp_iu_size = iu_size; in srp_target_alloc() 114 target->rx_ring_size = nr; in srp_target_alloc() 115 target->rx_ring = srp_ring_alloc(target->dev, nr, iu_size); in srp_target_alloc() 116 if (!target->rx_ring) in srp_target_alloc() 118 err = srp_iu_pool_alloc(&target in srp_target_alloc() 130 srp_target_free(struct srp_target *target) srp_target_free() argument 138 srp_iu_get(struct srp_target *target) srp_iu_get() argument [all...] |
| /third_party/icu/icu4c/source/samples/translit/ |
| H A D | util.cpp | 26 // Append a hex string to the target 29 UnicodeString& target) { in appendHex() 32 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF]; in appendHex() 34 return target; in appendHex() 40 UnicodeString target; in escape() local 41 target += "\""; in escape() 45 target += "\\u"; in escape() 46 appendHex(ch, 4, target); in escape() 48 target += ch; in escape() 51 target in escape() 27 appendHex(uint32_t number, int8_t digits, UnicodeString& target) appendHex() argument [all...] |
| /third_party/icu/icu4c/source/samples/msgfmt/ |
| H A D | util.cpp | 26 // Append a hex string to the target 29 UnicodeString& target) { in appendHex() 32 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF]; in appendHex() 34 return target; in appendHex() 40 UnicodeString target; in escape() local 41 target += "\""; in escape() 45 target += "\\u"; in escape() 46 appendHex(ch, 4, target); in escape() 48 target += ch; in escape() 51 target in escape() 27 appendHex(uint32_t number, int8_t digits, UnicodeString& target) appendHex() argument [all...] |
| /third_party/icu/icu4c/source/samples/datefmt/ |
| H A D | util.cpp | 26 // Append a hex string to the target 29 UnicodeString& target) { in appendHex() 32 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF]; in appendHex() 34 return target; in appendHex() 40 UnicodeString target; in escape() local 41 target += "\""; in escape() 45 target += "\\u"; in escape() 46 appendHex(ch, 4, target); in escape() 48 target += ch; in escape() 51 target in escape() 27 appendHex(uint32_t number, int8_t digits, UnicodeString& target) appendHex() argument [all...] |
| /third_party/ltp/testcases/kernel/tracing/ftrace_test/ |
| H A D | ftrace_stress_test.sh | 40 for target in ${test_targets}; do 41 if [ ! -e $TRACING_PATH/$target ] && 42 [ ! -e /proc/sys/kernel/$target ]; then 43 eval skip_$target=1 44 tst_resm TINFO "$target is not supported. Skip it." 46 eval skip_$target=0 85 for target in ${test_targets}; do 86 if should_skip_target $target; then 89 sh ftrace_${target}.sh & 91 tst_resm TINFO "Start pid${index}=$! $SPATH/ftrace_${target} [all...] |
| /third_party/skia/third_party/externals/icu/source/samples/datefmt/ |
| H A D | util.cpp | 26 // Append a hex string to the target 29 UnicodeString& target) { in appendHex() 32 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF]; in appendHex() 34 return target; in appendHex() 40 UnicodeString target; in escape() local 41 target += "\""; in escape() 45 target += "\\u"; in escape() 46 appendHex(ch, 4, target); in escape() 48 target += ch; in escape() 51 target in escape() 27 appendHex(uint32_t number, int8_t digits, UnicodeString& target) appendHex() argument [all...] |
| /third_party/skia/third_party/externals/icu/source/samples/msgfmt/ |
| H A D | util.cpp | 26 // Append a hex string to the target 29 UnicodeString& target) { in appendHex() 32 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF]; in appendHex() 34 return target; in appendHex() 40 UnicodeString target; in escape() local 41 target += "\""; in escape() 45 target += "\\u"; in escape() 46 appendHex(ch, 4, target); in escape() 48 target += ch; in escape() 51 target in escape() 27 appendHex(uint32_t number, int8_t digits, UnicodeString& target) appendHex() argument [all...] |
| /third_party/skia/third_party/externals/icu/source/samples/translit/ |
| H A D | util.cpp | 26 // Append a hex string to the target 29 UnicodeString& target) { in appendHex() 32 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF]; in appendHex() 34 return target; in appendHex() 40 UnicodeString target; in escape() local 41 target += "\""; in escape() 45 target += "\\u"; in escape() 46 appendHex(ch, 4, target); in escape() 48 target += ch; in escape() 51 target in escape() 27 appendHex(uint32_t number, int8_t digits, UnicodeString& target) appendHex() argument [all...] |
| /third_party/rust/crates/serde/serde/ |
| H A D | build.rs | 16 let target = env::var("TARGET").unwrap(); in main() 17 let emscripten = target == "asmjs-unknown-emscripten" || target == "wasm32-unknown-emscripten"; in main() 46 let has_atomic64 = target.starts_with("x86_64") in main() 47 || target.starts_with("i686") in main() 48 || target.starts_with("aarch64") in main() 49 || target.starts_with("powerpc64") in main() 50 || target.starts_with("sparc64") in main() 51 || target.starts_with("mips64el") in main() 52 || target in main() [all...] |
| /foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/ |
| H A D | rs_render_particle_animation.cpp | 44 auto target = GetTarget(); in Animate() local 45 if (!target) { in Animate() 47 } else if (!target->GetRenderProperties().GetVisible()) { in Animate() 48 target->RemoveModifier(property_->GetId()); in Animate() 65 if (target) { in Animate() 66 target->RemoveModifier(property_->GetId()); in Animate() 123 auto target = GetTarget(); in OnAttach() local 124 if (target == nullptr) { in OnAttach() 125 ROSEN_LOGE("RSRenderParticleAnimation::OnAttach, target is nullptr"); in OnAttach() 128 auto particleAnimations = target in OnAttach() 141 auto target = GetTarget(); OnDetach() local [all...] |
| /third_party/mesa3d/src/gallium/frontends/clover/llvm/codegen/ |
| H A D | native.cpp | 109 emit_code(::llvm::Module &mod, const target &target, in emit_code() argument 113 auto t = ::llvm::TargetRegistry::lookupTarget(target.triple, err); in emit_code() 118 t->createTargetMachine(target.triple, target.cpu, "", {}, in emit_code() 123 "Could not create TargetMachine: " + target.triple); in emit_code() 146 clover::llvm::build_module_native(::llvm::Module &mod, const target &target, in build_module_native() argument 149 const auto code = emit_code(mod, target, in build_module_native() 156 const target in print_module_native() 155 print_module_native(const ::llvm::Module &mod, const target &target) print_module_native() argument [all...] |
| /third_party/node/deps/v8/src/baseline/ia32/ |
| H A D | baseline-assembler-ia32-inl.h | 76 inline bool Clobbers(Register target, MemOperand op) { in Clobbers() argument 77 return op.is_reg(target); in Clobbers() 103 void BaselineAssembler::Jump(Label* target, Label::Distance distance) { in Jump() argument 104 __ jmp(target, distance); in Jump() 108 Label* target, Label::Distance distance) { in JumpIfRoot() 109 __ JumpIfRoot(value, index, target, distance); in JumpIfRoot() 113 Label* target, Label::Distance distance) { in JumpIfNotRoot() 114 __ JumpIfNotRoot(value, index, target, distance); in JumpIfNotRoot() 117 void BaselineAssembler::JumpIfSmi(Register value, Label* target, in JumpIfSmi() argument 119 __ JumpIfSmi(value, target, distanc in JumpIfSmi() 107 JumpIfRoot(Register value, RootIndex index, Label* target, Label::Distance distance) JumpIfRoot() argument 112 JumpIfNotRoot(Register value, RootIndex index, Label* target, Label::Distance distance) JumpIfNotRoot() argument 122 JumpIfImmediate(Condition cc, Register left, int right, Label* target, Label::Distance distance) JumpIfImmediate() argument 126 __ j(AsMasmCondition(cc), target, distance); JumpIfImmediate() local 129 JumpIfNotSmi(Register value, Label* target, Label::Distance distance) JumpIfNotSmi() argument 146 TestAndBranch(Register value, int mask, Condition cc, Label* target, Label::Distance distance) TestAndBranch() argument 153 __ j(AsMasmCondition(cc), target, distance); TestAndBranch() local 156 JumpIf(Condition cc, Register lhs, const Operand& rhs, Label* target, Label::Distance distance) JumpIf() argument 159 __ j(AsMasmCondition(cc), target, distance); JumpIf() local 161 JumpIfObjectType(Condition cc, Register object, InstanceType instance_type, Register map, Label* target, Label::Distance distance) JumpIfObjectType() argument 167 __ j(AsMasmCondition(cc), target, distance); JumpIfObjectType() local 169 JumpIfInstanceType(Condition cc, Register map, InstanceType instance_type, Label* target, Label::Distance distance) JumpIfInstanceType() argument 181 __ j(AsMasmCondition(cc), target, distance); JumpIfInstanceType() local 183 JumpIfPointer(Condition cc, Register value, MemOperand operand, Label* target, Label::Distance distance) JumpIfPointer() argument 188 JumpIfSmi(Condition cc, Register value, Smi smi, Label* target, Label::Distance distance) JumpIfSmi() argument 195 __ j(AsMasmCondition(cc), target, distance); JumpIfSmi() local 197 JumpIfSmi(Condition cc, Register lhs, Register rhs, Label* target, Label::Distance distance) JumpIfSmi() argument 202 __ j(AsMasmCondition(cc), target, distance); JumpIfSmi() local 204 JumpIfTagged(Condition cc, Register value, MemOperand operand, Label* target, Label::Distance distance) JumpIfTagged() argument 208 __ j(AsMasmCondition(cc), target, distance); JumpIfTagged() local 210 JumpIfTagged(Condition cc, MemOperand operand, Register value, Label* target, Label::Distance distance) JumpIfTagged() argument 214 __ j(AsMasmCondition(cc), target, distance); JumpIfTagged() local 216 JumpIfByte(Condition cc, Register value, int32_t byte, Label* target, Label::Distance distance) JumpIfByte() argument 219 __ j(AsMasmCondition(cc), target, distance); JumpIfByte() local 358 StoreTaggedSignedField(Register target, int offset, Smi value) StoreTaggedSignedField() argument 363 StoreTaggedFieldWithWriteBarrier(Register target, int offset, Register value) StoreTaggedFieldWithWriteBarrier() argument 374 StoreTaggedFieldNoWriteBarrier(Register target, int offset, Register value) StoreTaggedFieldNoWriteBarrier() argument [all...] |
| /third_party/vk-gl-cts/framework/opengl/simplereference/ |
| H A D | sglrContextWrapper.hpp | 51 void glBindBuffer (deUint32 target, deUint32 buffer); 52 void glBindFramebuffer (deUint32 target, deUint32 framebuffer); 53 void glBindRenderbuffer (deUint32 target, deUint32 renderbuffer); 54 void glBindTexture (deUint32 target, deUint32 texture); 60 void glBufferData (deUint32 target, deIntptr size, const void* data, deUint32 usage); 61 void glBufferSubData (deUint32 target, deIntptr offset, deIntptr size, const void* data); 62 deUint32 glCheckFramebufferStatus (deUint32 target); 69 void glCompressedTexImage2D (deUint32 target, int level, deUint32 internalformat, int width, int height, int border, int imageSize, const void* data); 70 void glCompressedTexSubImage2D (deUint32 target, int level, int xoffset, int yoffset, int width, int height, deUint32 format, int imageSize, const void* data); 71 void glCopyTexImage1D (deUint32 target, in [all...] |
| /third_party/protobuf/src/google/protobuf/ |
| H A D | wire_format.cc | 195 const UnknownFieldSet& unknown_fields, uint8* target, in InternalSerializeUnknownFieldsToArray() 200 target = stream->EnsureSpace(target); in InternalSerializeUnknownFieldsToArray() 203 target = WireFormatLite::WriteUInt64ToArray(field.number(), in InternalSerializeUnknownFieldsToArray() 204 field.varint(), target); in InternalSerializeUnknownFieldsToArray() 207 target = WireFormatLite::WriteFixed32ToArray(field.number(), in InternalSerializeUnknownFieldsToArray() 208 field.fixed32(), target); in InternalSerializeUnknownFieldsToArray() 211 target = WireFormatLite::WriteFixed64ToArray(field.number(), in InternalSerializeUnknownFieldsToArray() 212 field.fixed64(), target); in InternalSerializeUnknownFieldsToArray() 215 target in InternalSerializeUnknownFieldsToArray() 194 InternalSerializeUnknownFieldsToArray( const UnknownFieldSet& unknown_fields, uint8* target, io::EpsCopyOutputStream* stream) InternalSerializeUnknownFieldsToArray() argument 232 InternalSerializeUnknownMessageSetItemsToArray( const UnknownFieldSet& unknown_fields, uint8* target, io::EpsCopyOutputStream* stream) InternalSerializeUnknownMessageSetItemsToArray() argument 1035 _InternalSerialize(const Message& message, uint8* target, io::EpsCopyOutputStream* stream) _InternalSerialize() argument 1064 SerializeMapKeyWithCachedSizes(const FieldDescriptor* field, const MapKey& value, uint8* target, io::EpsCopyOutputStream* stream) SerializeMapKeyWithCachedSizes() argument 1101 SerializeMapValueRefWithCachedSizes( const FieldDescriptor* field, const MapValueRef& value, uint8* target, io::EpsCopyOutputStream* stream) SerializeMapValueRefWithCachedSizes() argument 1185 InternalSerializeMapEntry(const FieldDescriptor* field, const MapKey& key, const MapValueRef& value, uint8* target, io::EpsCopyOutputStream* stream) InternalSerializeMapEntry() argument 1205 InternalSerializeField(const FieldDescriptor* field, const Message& message, uint8* target, io::EpsCopyOutputStream* stream) InternalSerializeField() argument 1423 InternalSerializeMessageSetItem( const FieldDescriptor* field, const Message& message, uint8* target, io::EpsCopyOutputStream* stream) InternalSerializeMessageSetItem() argument [all...] |
| /kernel/linux/linux-6.6/Documentation/sphinx/ |
| H A D | automarkup.py | 128 def failure_seen(target): 129 return (target) in failed_lookups 130 def note_failure(target): 131 failed_lookups[target] = True 152 for target in possible_targets: 153 if (target not in Skipfuncs) and not failure_seen(target): 158 reftarget = target, 167 'function', target, pxref, 174 note_failure(target) [all...] |
| /foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ng/ |
| H A D | page_router_manager.cpp | 67 void PageRouterManager::LoadOhmUrl(const RouterPageInfo& target) in LoadOhmUrl() argument 69 RouterPageInfo info = target; in LoadOhmUrl() 178 void PageRouterManager::Push(const RouterPageInfo& target) in Push() argument 185 [weak = WeakClaim(this), target]() { in Push() 188 router->Push(target); in Push() 194 StartPush(target); in Push() 235 void PageRouterManager::PushNamedRoute(const RouterPageInfo& target) in PushNamedRoute() argument 237 auto callback = [weak = AceType::WeakClaim(this), target]() { in PushNamedRoute() 240 pageRouterManager->PushNamedRouteInner(target); in PushNamedRoute() 246 if (TryPreloadNamedRouter(target in PushNamedRoute() 253 PushNamedRouteInner(const RouterPageInfo& target) PushNamedRouteInner() argument 303 Replace(const RouterPageInfo& target) Replace() argument 322 ReplaceNamedRoute(const RouterPageInfo& target) ReplaceNamedRoute() argument 340 ReplaceNamedRouteInner(const RouterPageInfo& target) ReplaceNamedRouteInner() argument 362 BackWithTarget(const RouterPageInfo& target) BackWithTarget() argument 549 StartRestore(const RouterPageInfo& target) StartRestore() argument 1103 PushOhmUrl(const RouterPageInfo& target) PushOhmUrl() argument 1142 StartPush(const RouterPageInfo& target) StartPush() argument 1204 ReplaceOhmUrl(const RouterPageInfo& target) ReplaceOhmUrl() argument 1238 StartReplace(const RouterPageInfo& target) StartReplace() argument 1274 StartBack(const RouterPageInfo& target) StartBack() argument 1344 BackCheckAlert(const RouterPageInfo& target) BackCheckAlert() argument 1375 RouterPageInfo target = GetPageInfoByIndex(index, params); BackToIndexCheckAlert() local 1394 LoadPage(int32_t pageId, const RouterPageInfo& target, bool needHideLast, bool needTransition, bool ) LoadPage() argument 1416 CreatePage(int32_t pageId, const RouterPageInfo& target) CreatePage() argument 1519 LoadCard(int32_t pageId, const RouterPageInfo& target, const std::string& params, int64_t cardId, bool , bool needHideLast, const std::string& entryPoint) LoadCard() argument 1548 MovePageToFront(int32_t index, const RefPtr<FrameNode>& pageNode, const RouterPageInfo& target, bool needHideLast, bool forceShowCurrent, bool needTransition) MovePageToFront() argument 1624 RestorePageWithTarget(int32_t index, bool removeRestorePages, const RouterPageInfo& target, RestorePageDestination dest, bool needTransition) RestorePageWithTarget() argument 1673 RestorePageWithTargetInner( const RouterPageInfo& target, RestorePageDestination dest, bool needTransition) RestorePageWithTargetInner() argument 1741 StartRestorePageWithTarget(const RouterPageInfo& target, std::function<void()>&& finishCallback, RestorePageDestination dest, bool needTransition) StartRestorePageWithTarget() argument 2131 RestoreOhmUrl(const RouterPageInfo& target, std::function<void()>&& finishCallback, RestorePageDestination dest, bool needTransition) RestoreOhmUrl() argument [all...] |
| /third_party/ltp/tools/sparse/sparse-src/ |
| H A D | target-sparc.c | 2 #include "target.h" 8 static void predefine_sparc(const struct target *self) in predefine_sparc() 20 static void init_sparc32(const struct target *target) in init_sparc32() argument 41 static void predefine_sparc32(const struct target *self) in predefine_sparc32() 46 const struct target target_sparc32 = { 62 static void init_sparc64(const struct target *target) in init_sparc64() argument 68 static void predefine_sparc64(const struct target *self) in predefine_sparc64() 76 const struct target target_sparc6 [all...] |
| /kernel/linux/linux-5.10/drivers/of/ |
| H A D | overlay.c | 27 * struct target - info about current target node as recursing through overlay 34 * into. When recursing to the next level of the overlay subtree, the target 37 * subtree does not exist at the same level in the live devicetree, target->np 41 struct target { struct 48 * @target: target of the overlay operation 53 struct device_node *target; member 95 struct target *target, cons 302 add_changeset_property(struct overlay_changeset *ovcs, struct target *target, struct property *overlay_prop, bool is_symbols_prop) add_changeset_property() argument 407 add_changeset_node(struct overlay_changeset *ovcs, struct target *target, struct device_node *node) add_changeset_node() argument 479 build_changeset_next_level(struct overlay_changeset *ovcs, struct target *target, const struct device_node *overlay_node) build_changeset_next_level() argument 511 build_changeset_symbols_node(struct overlay_changeset *ovcs, struct target *target, const struct device_node *overlay_symbols_node) build_changeset_symbols_node() argument 637 struct target target; build_changeset() local [all...] |
| /kernel/linux/linux-6.6/drivers/of/ |
| H A D | overlay.c | 27 * struct target - info about current target node as recursing through overlay 34 * into. When recursing to the next level of the overlay subtree, the target 37 * subtree does not exist at the same level in the live devicetree, target->np 41 struct target { struct 49 * @target: target of the overlay operation 53 struct device_node *target; member 99 struct target *target, cons 300 add_changeset_property(struct overlay_changeset *ovcs, struct target *target, struct property *overlay_prop, bool is_symbols_prop) add_changeset_property() argument 405 add_changeset_node(struct overlay_changeset *ovcs, struct target *target, struct device_node *node) add_changeset_node() argument 477 build_changeset_next_level(struct overlay_changeset *ovcs, struct target *target, const struct device_node *overlay_node) build_changeset_next_level() argument 509 build_changeset_symbols_node(struct overlay_changeset *ovcs, struct target *target, const struct device_node *overlay_symbols_node) build_changeset_symbols_node() argument 635 struct target target; build_changeset() local [all...] |
| /third_party/gn/infra/recipes/ |
| H A D | gn.py | 20 'target', 53 def _get_compilation_environment(api, target, cipd_dir): 54 if target.is_linux: 55 triple = '--target=%s' % target.triple 56 if target.triple == 'riscv64-linux-gnu': 67 elif target.is_mac: 68 triple = '--target=%s' % target.triple 145 api.target('linu [all...] |