/external/iptables/extensions/ |
D | libxt_owner.t | 3 -m owner --uid-owner root;-m owner --uid-owner 0;OK 4 -m owner --uid-owner 0-10;=;OK 5 -m owner --gid-owner root;-m owner --gid-owner 0;OK 6 -m owner --gid-owner 0-10;=;OK 7 -m owner --uid-owner root --gid-owner root;-m owner --uid-owner 0 --gid-owner 0;OK 8 -m owner --uid-owner 0-10 --gid-owner 0-10;=;OK 9 -m owner ! --uid-owner root;-m owner ! --uid-owner 0;OK 10 -m owner --socket-exists;=;OK 11 -m owner --gid-owner 0-10 --suppl-groups;=;OK 12 -m owner --suppl-groups --gid-owner 0-10;;FAIL [all …]
|
D | libxt_owner.c | 65 "owner match options:\n" in owner_mt_help_v0() 66 "[!] --uid-owner userid Match local UID\n" in owner_mt_help_v0() 67 "[!] --gid-owner groupid Match local GID\n" in owner_mt_help_v0() 68 "[!] --pid-owner processid Match local PID\n" in owner_mt_help_v0() 69 "[!] --sid-owner sessionid Match local SID\n" in owner_mt_help_v0() 70 "[!] --cmd-owner name Match local command name\n" in owner_mt_help_v0() 77 "owner match options:\n" in owner_mt6_help_v0() 78 "[!] --uid-owner userid Match local UID\n" in owner_mt6_help_v0() 79 "[!] --gid-owner groupid Match local GID\n" in owner_mt6_help_v0() 80 "[!] --pid-owner processid Match local PID\n" in owner_mt6_help_v0() [all …]
|
/external/webrtc/rtc_base/task_utils/ |
D | pending_task_safety_flag_unittest.cc | 34 // Scope for the |owner| instance. in TEST() 35 class Owner { in TEST() class 37 Owner() = default; in TEST() 38 ~Owner() { flag_->SetNotAlive(); } in TEST() 42 } owner; in TEST() local 43 EXPECT_TRUE(owner.flag_->alive()); in TEST() 44 safety_flag = owner.flag_; in TEST() 47 // |owner| now out of scope. in TEST() 54 struct Owner { in TEST() struct 56 } owner; in TEST() local [all …]
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/sync/ |
D | Mutex.kt | 37 …* @param owner Optional owner token for debugging. When `owner` is specified (non-null value) and … in <lambda>() 40 public fun tryLock(owner: Any? = null): Boolean in <lambda>() 59 …* @param owner Optional owner token for debugging. When `owner` is specified (non-null value) and … in <lambda>() 62 public suspend fun lock(owner: Any? = null) in <lambda>() 72 * Checks mutex locked by owner in <lambda>() 74 … * @return `true` on mutex lock by owner, `false` if not locker or it is locked by different owner in <lambda>() 76 public fun holdsLock(owner: Any): Boolean in <lambda>() 80 * was locked with a different owner token (by identity). in <lambda>() 82 …* @param owner Optional owner token for debugging. When `owner` is specified (non-null value) and … in <lambda>() 85 public fun unlock(owner: Any? = null) in <lambda>() [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | XPathVisitor.java | 43 * <code>boolean visitComponentType(ExpressionOwner owner, ComponentType compType)</code>. 44 * The ExpressionOwner argument is the owner of the component, and can 55 * @param owner The owner of the expression, to which the expression can 60 public boolean visitLocationPath(ExpressionOwner owner, LocPathIterator path) in visitLocationPath() argument 67 * @param owner The owner of the expression, to which the expression can 72 public boolean visitUnionPath(ExpressionOwner owner, UnionPathIterator path) in visitUnionPath() argument 79 * @param owner The owner of the expression, to which the expression can 84 public boolean visitStep(ExpressionOwner owner, NodeTest step) in visitStep() argument 94 * @param owner The owner of the expression, to which the expression can 99 public boolean visitPredicate(ExpressionOwner owner, Expression pred) in visitPredicate() argument [all …]
|
/external/libwebsockets/lib/core/ |
D | lws_dll2.c | 34 if (d->owner) in lws_dll2_is_detached() 42 * have .owner, .next and .prev all set to NULL, so we in lws_dll2_is_detached() 43 * can just check .owner to see if we are detached. in lws_dll2_is_detached() 46 * state of NULL .owner, but non-NULL in .next or .prev, in lws_dll2_is_detached() 57 lws_dll2_foreach_safe(struct lws_dll2_owner *owner, void *user, in lws_dll2_foreach_safe() argument 60 lws_start_foreach_dll_safe(struct lws_dll2 *, p, tp, owner->head) { in lws_dll2_foreach_safe() 69 lws_dll2_add_head(struct lws_dll2 *d, struct lws_dll2_owner *owner) in lws_dll2_add_head() argument 77 if (owner->head != d) in lws_dll2_add_head() 78 d->next = owner->head; in lws_dll2_add_head() 87 owner->head = d; in lws_dll2_add_head() [all …]
|
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/ |
D | OwnerAttributeProvider.java | 32 * Attribute provider that provides the {@link FileOwnerAttributeView} ("owner"). 38 private static final ImmutableSet<String> ATTRIBUTES = ImmutableSet.of("owner"); 44 return "owner"; in name() 54 Object userProvidedOwner = userProvidedDefaults.get("owner:owner"); in defaultValues() 56 UserPrincipal owner = DEFAULT_OWNER; in defaultValues() local 59 owner = createUserPrincipal((String) userProvidedOwner); in defaultValues() 61 throw invalidType("owner", "owner", userProvidedOwner, String.class, UserPrincipal.class); in defaultValues() 65 return ImmutableMap.of("owner:owner", owner); in defaultValues() 71 if (attribute.equals("owner")) { in get() 72 return file.getAttribute("owner", "owner"); in get() [all …]
|
/external/libwebsockets/READMEs/ |
D | README.lws_dll.md | 34 lws_dll owner; 37 Adding a mystruct to the owner list (...add_tail() works the same way but adds 45 lws_dll_add_head(&p->list, &owner); 48 Removing the list object from its owner 51 lws_dll2_remove(&p->list, &owner); 71 lws_dll2_owner owner; 74 Adding a mystruct to the owner list (...add_tail() works the same way but adds 82 lws_dll2_add_head(&p->list, &owner); 85 Removing the list object from its owner (notice compared to lws_dll, it doesn't 86 need to be told the owner) [all …]
|
/external/python/apitools/samples/storage_sample/storage_v1/ |
D | storage_v1_messages.py | 26 OwnerValue: The owner of the bucket. This is always the project team's 27 owner group. 51 owner: The owner of the bucket. This is always the project team's owner 162 r"""The owner of the bucket. This is always the project team's owner 166 entity: The entity, in the form project-owner-projectId. 212 owner = _messages.MessageField('OwnerValue', 12) variable in Bucket 246 OWNER. 504 OwnerValue: The owner of the object. This will always be the uploader of 538 owner: The owner of the object. This will always be the uploader of the 586 r"""The owner of the object. This will always be the uploader of the [all …]
|
/external/llvm/utils/ |
D | wciia.py | 6 Determines code owner of the file/folder relative to the llvm source root. 7 Code owner is determined from the content of the CODE_OWNERS.TXT 27 def process_files_and_folders(owner): argument 28 filesfolders = owner['filesfolders'] 37 owner['paths'] = [] 39 owner['paths'].append(path) 41 def process_code_owner(owner): argument 42 if 'filesfolders' in owner: 43 filesfolders = owner['filesfolders'] 46 owner['filesfolders'] = owner['description'] [all …]
|
/external/marisa-trie/bindings/perl/ |
D | marisa.pm | 56 use vars qw(@ISA %OWNER %ITERATORS %BLESSEDMEMBERS); 58 %OWNER = (); 68 if (exists $OWNER{$self}) { 70 delete $OWNER{$self}; 77 delete $OWNER{$ptr}; 83 $OWNER{$ptr} = 1; 90 use vars qw(@ISA %OWNER %ITERATORS %BLESSEDMEMBERS); 92 %OWNER = (); 101 if (exists $OWNER{$self}) { 103 delete $OWNER{$self}; [all …]
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/objectid/ |
D | TestObjectIdWithPolymorphic.java | 44 public Base811 owner; field in TestObjectIdWithPolymorphic.Base811 47 public Base811(Process owner) { in Base811() argument 48 this.owner = owner; in Base811() 49 if (owner == null) { in Base811() 52 id = ++owner.childIdCounter; in Base811() 53 owner.children.add(this); in Base811() 67 public Activity(Process owner, Activity parent) { in Activity() argument 68 super(owner); in Activity() 78 public Scope(Process owner, Activity parent) { in Scope() argument 79 super(owner, parent); in Scope() [all …]
|
/external/desugar/java/com/google/devtools/build/android/desugar/ |
D | InterfaceDesugaring.java | 145 interfaceFieldToAccessInCompanionMethodToTriggerInterfaceClinit.owner(), in emitInterfaceFieldAccessInCompanionMethodToTriggerInterfaceClinit() 260 public void visitOuterClass(String owner, String name, String desc) { in visitOuterClass() argument 263 // figure out if "owner" is an interface) need to adjust the outer method information. in visitOuterClass() 264 if (name != null && interfaceCache.isOuterInterface(owner, internalName)) { in visitOuterClass() 274 } // otherwise there's no enclosing method that could've been moved, or owner is a class in visitOuterClass() 275 super.visitOuterClass(owner, name, desc); in visitOuterClass() 288 // Rename lambda method to reflect the new owner. Not doing so confuses LambdaDesugaring in normalizeInterfaceMethodName() 345 public void visitFieldInsn(int opcode, String owner, String name, String desc) { in visitFieldInsn() argument 348 && owner.equals(internalName)) { in visitFieldInsn() 350 // (b/64290760), so we test whether the owner is the same as the internalName. in visitFieldInsn() [all …]
|
D | CoreLibrarySupport.java | 62 /** Map from {@code owner#name} core library members to their new owners. */ 135 public String getMoveTarget(String owner, String name) { in getMoveTarget() argument 136 return memberMoves.get(rewriter.unprefix(owner) + '#' + name); in getMoveTarget() 150 String owner, in registerIfEmulatedCoreInterface() argument 154 Class<?> emulated = getEmulatedCoreClassOrInterface(owner); in registerIfEmulatedCoreInterface() 158 checkArgument(emulated.isInterface(), "Shouldn't be called for a class: %s.%s", owner, name); in registerIfEmulatedCoreInterface() local 163 "Should only be called for default methods: %s.%s", owner, name); in registerIfEmulatedCoreInterface() local 173 * <p>This method can only return non-{@code null} if {@code owner} is a core library type. 182 int opcode, String owner, String name, String desc, boolean itf) { in getCoreInterfaceRewritingTarget() argument 183 if (looksGenerated(owner)) { in getCoreInterfaceRewritingTarget() [all …]
|
/external/python/apitools/samples/storage_sample/ |
D | storage_v1.json | 248 "owner": { object 250 "description": "The owner of the bucket. This is always the project team's owner group.", 254 "description": "The entity, in the form project-owner-projectId." 370 "description": "The access permission for the entity. Can be READER, WRITER, or OWNER.", 729 "owner": { object 731 "description": "The owner of the object. This will always be the uploader of the object.", 836 "description": "The access permission for the entity. Can be READER or OWNER." 919 …OWNER role. \n- roles/storage.legacyBucketReader — Read access to buckets with object listing. Eq… 1258 "Omit owner, acl and defaultObjectAcl properties." 1321 "Project team owners get OWNER access, and allAuthenticatedUsers get READER access.", [all …]
|
/external/musl/src/stdio/ |
D | __lockfile.c | 6 int owner = f->lock, tid = __pthread_self()->tid; in __lockfile() local 7 if ((owner & ~MAYBE_WAITERS) == tid) in __lockfile() 9 owner = a_cas(&f->lock, 0, tid); in __lockfile() 10 if (!owner) return 1; in __lockfile() 11 while ((owner = a_cas(&f->lock, 0, tid|MAYBE_WAITERS))) { in __lockfile() 12 if ((owner & MAYBE_WAITERS) || in __lockfile() 13 a_cas(&f->lock, owner, owner|MAYBE_WAITERS)==owner) in __lockfile() 14 __futexwait(&f->lock, owner|MAYBE_WAITERS, 1); in __lockfile()
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowDevicePolicyManagerTest.java | 71 // GIVEN an test package which is not the device owner app of the device in isDeviceOwnerAppShouldReturnFalseForNonDeviceOwnerApp() 82 // GIVEN an test package which is the profile owner app of the device in isDeviceOwnerShouldReturnFalseForProfileOwner() 94 // GIVEN an test package which is the device owner app of the device in isDeviceOwnerShouldReturnTrueForDeviceOwner() 106 // GIVEN an test package which is the device owner app of the device in getDeviceOwnerShouldReturnDeviceOwnerPackageName() 118 // WHEN DevicePolicyManager#getProfileOwner is called without a device owner in getDeviceOwnerShouldReturnNullWhenThereIsNoDeviceOwner() 126 // GIVEN a test component is the device owner app of the device in isDeviceManagedShouldReturnTrueWhenThereIsADeviceOwner() 137 // WHEN DevicePolicyManager#isDeviceManaged is called without a device owner in isDeviceManagedShouldReturnFalseWhenThereIsNoDeviceOwner() 145 // GIVEN an test package which is not the profile owner app of the device in isProfileOwnerAppShouldReturnFalseForNonProfileOwnerApp() 156 // GIVEN an test package which is the device owner app of the device in isProfileOwnerShouldReturnFalseForDeviceOwner() 168 // GIVEN an test package which is the profile owner app of the device in isProfileOwnerShouldReturnTrueForProfileOwner() [all …]
|
/external/angle/third_party/vulkan-deps/glslang/src/.github/workflows/ |
D | deploy.js | 4 owner: context.repo.owner, property 16 owner: context.repo.owner, property 26 owner: context.repo.owner, property 37 owner: context.repo.owner, property 50 owner: context.repo.owner, property 64 owner: context.repo.owner, property
|
/external/deqp-deps/glslang/.github/workflows/ |
D | deploy.js | 4 owner: context.repo.owner, property 16 owner: context.repo.owner, property 26 owner: context.repo.owner, property 37 owner: context.repo.owner, property 50 owner: context.repo.owner, property 64 owner: context.repo.owner, property
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/main/java/com/google/android/exoplayer2/metadata/id3/ |
D | PrivFrame.java | 31 public final String owner; field in PrivFrame 34 public PrivFrame(String owner, byte[] privateData) { in PrivFrame() argument 36 this.owner = owner; in PrivFrame() 42 owner = castNonNull(in.readString()); in PrivFrame() 55 return Util.areEqual(owner, other.owner) && Arrays.equals(privateData, other.privateData); in equals() 61 result = 31 * result + (owner != null ? owner.hashCode() : 0); in hashCode() 68 return id + ": owner=" + owner; in toString() 74 dest.writeString(owner); in writeToParcel()
|
/external/exoplayer/tree/library/common/src/main/java/com/google/android/exoplayer2/metadata/id3/ |
D | PrivFrame.java | 33 public final String owner; field in PrivFrame 36 public PrivFrame(String owner, byte[] privateData) { in PrivFrame() argument 38 this.owner = owner; in PrivFrame() 44 owner = castNonNull(in.readString()); in PrivFrame() 57 return Util.areEqual(owner, other.owner) && Arrays.equals(privateData, other.privateData); in equals() 63 result = 31 * result + (owner != null ? owner.hashCode() : 0); in hashCode() 70 return id + ": owner=" + owner; in toString() 76 dest.writeString(owner); in writeToParcel()
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/main/java/com/google/android/exoplayer2/metadata/id3/ |
D | PrivFrame.java | 31 public final String owner; field in PrivFrame 34 public PrivFrame(String owner, byte[] privateData) { in PrivFrame() argument 36 this.owner = owner; in PrivFrame() 42 owner = castNonNull(in.readString()); in PrivFrame() 55 return Util.areEqual(owner, other.owner) && Arrays.equals(privateData, other.privateData); in equals() 61 result = 31 * result + (owner != null ? owner.hashCode() : 0); in hashCode() 68 return id + ": owner=" + owner; in toString() 74 dest.writeString(owner); in writeToParcel()
|
/external/python/cpython3/Lib/test/ |
D | test_subclassinit.py | 105 def __set_name__(self, owner, name): argument 106 self.owner = owner 113 self.assertIs(A.d.owner, A) 120 self.assertIs(ret.d.owner, ret) 124 def __set_name__(self, owner, name): argument 125 self.owner = owner 134 def __set_name__(self, owner, name): argument 176 def __set_name__(self, owner, name): argument 177 self.owner = owner 183 self.meta_owner = self.owner [all …]
|
/external/turbine/java/com/google/turbine/binder/sym/ |
D | MethodSymbol.java | 28 * methods aren't uniquely identified by their name and owner. 32 private final ClassSymbol owner; field in MethodSymbol 35 public MethodSymbol(int idx, ClassSymbol owner, String name) { in MethodSymbol() argument 37 this.owner = owner; in MethodSymbol() 42 public ClassSymbol owner() { in owner() method in MethodSymbol 43 return owner; in owner() 53 return Objects.hash(name, owner); in hashCode() 67 return name().equals(other.name()) && owner().equals(other.owner()) && idx == other.idx; in equals() 72 return owner + "#" + name; in toString()
|
/external/clang/test/SemaObjC/ |
D | warn-retain-cycle.m | 41 BlockOwner *owner; field 43 @property (retain) BlockOwner *owner; property 48 …x->owner.strong = ^{ (void) x; }; // expected-warning {{retain cycle}} expected-note {{block will … 49 …x.owner.strong = ^{ (void) x; }; // expected-warning {{retain cycle}} expected-note {{block will b… 58 @dynamic owner; 63 …self.owner.strong = ^{ (void) owner; }; // expected-warning {{retain cycle}} expected-note {{block… 64 self.owner2.strong = ^{ (void) owner; }; 67 self.owner3.strong = ^{ (void) owner; }; 69 …owner.strong = ^{ (void) owner; }; // expected-warning {{retain cycle}} expected-note {{block will… 71 …owner.strong = ^{ ^{ (void) owner; }(); }; // expected-warning {{retain cycle}} expected-note {{bl… [all …]
|