HomeSort by relevance Sort by last modified time
    Searched defs:owner (Results 101 - 125 of 1309) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/av/media/libmedia/
IMediaExtractor.cpp 217 pid_t owner; member in struct:android::__anon45187
230 str.append(String8::format(", pid %d: ", owner));
288 ex.owner = IPCThreadState::self()->getCallingPid();
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
UiAutomationManager.java 70 * @param owner A binder object owned by the process that owns the UiAutomation to be
77 void registerUiTestAutomationServiceLocked(IBinder owner,
93 owner.linkToDeath(mUiAutomationServiceOwnerDeathRecipient, 0);
103 mUiAutomationServiceOwner = owner;
  /frameworks/base/services/core/java/com/android/server/am/
ReceiverList.java 38 final ActivityManagerService owner; field in class:ReceiverList
51 owner = _owner;
69 owner.unregisterReceiver(receiver);
  /frameworks/base/services/core/java/com/android/server/notification/
CalendarTracker.java 133 final String owner = cursor.getString(6); local
141 availabilityToString(availability), eventId, name, owner, calendarId,
145 && (filter.calendar == null || Objects.equals(filter.calendar, owner)
150 final boolean meetsAttendee = meetsAttendee(filter, eventId, owner);
  /frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/
LockFindingClassVisitor.java 74 private String owner; field in class:LockFindingClassVisitor.LockFindingMethodVisitor
77 public LockFindingMethodVisitor(String owner, MethodNode mn, MethodVisitor chain) {
79 assert owner != null;
80 this.owner = owner;
94 if (t.getTargetDesc().equals("L" + owner + ";")) {
101 a.analyze(owner, mn);
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixFileAttributes.java 57 private volatile UserPrincipal owner; field in class:UnixFileAttributes
192 public UserPrincipal owner() { method in class:UnixFileAttributes
193 if (owner == null) {
195 if (owner == null) {
196 owner = UnixUserPrincipals.fromUid(st_uid);
200 return owner;
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaAdapter.java 161 // Deal with exchange events that the owner cannot respond to
164 String owner = cursor.getString(AgendaWindowAdapter.INDEX_OWNER_ACCOUNT); local
166 if (owner.equals(organizer)) {
  /packages/apps/Settings/src/com/android/settings/enterprise/
EnterprisePrivacyFeatureProviderImpl.java 162 ComponentName owner = mDpm.getDeviceOwnerComponentOnCallingUser(); local
163 if (owner == null) {
164 owner = mDpm.getProfileOwnerAsUser(MY_USER_ID);
166 if (owner == null) {
169 return mDpm.getMaximumFailedPasswordsForWipe(owner, MY_USER_ID);
  /packages/services/BuiltInPrintService/src/com/android/bips/p2p/
P2pConnectionProcedure.java 187 WifiP2pDevice owner = group.getOwner(); local
188 if (owner != null && owner.deviceAddress.equals(mPeer.deviceAddress)) {
  /packages/services/Car/car-lib/src/android/car/cluster/renderer/
InstrumentClusterRenderingService.java 163 String owner = "none"; local
166 owner = "[uid: " + mRendererBinder.mNavContextOwner.first
170 writer.println("navigation focus owner: " + owner);
255 Pair<Integer, Integer> owner = mNavContextOwner; local
256 if (owner == null || owner.first != uid || owner.second != pid) {
258 + " not an owner of APP_FOCUS_TYPE_NAVIGATION");
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
ppp-comp.h 111 struct module *owner; member in struct:compressor
  /test/vti/test_serving/gae/webapp/src/proto/
model.py 120 owner = ndb.StringProperty() variable in class:LabModel
146 owner = messages.StringField(2) variable in class:LabInfoMessage
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/commons/
GASMifierMethodVisitor.class 
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
RedundentExprEliminator.java 116 * @param psuedoVarRecipient The owner of the subtree from where the
128 ExpressionOwner owner = (ExpressionOwner) paths.elementAt(i); local
129 if (null != owner)
131 int found = findAndEliminateRedundant(i + 1, i, owner, psuedoVarRecipient, paths);
245 ExpressionOwner owner = matchedPaths.m_exprOwner; local
246 WalkingIterator iter = (WalkingIterator)owner.getExpression();
253 owner.setExpression(newIter2);
349 // as the expression owner... i.e. the var decl has to go above the expression owner.
591 * @param firstOccuranceOwner The owner of the expression we are looking for
658 ExpressionOwner owner = head.m_exprOwner; local
    [all...]
  /art/test/1930-monitor-info/src/art/
Monitors.java 77 public final Thread owner; field in class:Monitors.MonitorUsage
84 Thread owner,
90 this.owner = owner;
101 "MonitorUsage{ monitor: %s, owner: %s, entryCount: %d, waiters: %s, notify_waiters: %s }",
103 (owner != null) ? owner.getName() : "<NULL>",
243 if (IsLocked() && Objects.equals(runner, Monitors.getObjectMonitorUsage(lock).owner)) {
  /art/test/1931-monitor-events/src/art/
Monitors.java 77 public final Thread owner; field in class:Monitors.MonitorUsage
84 Thread owner,
90 this.owner = owner;
101 "MonitorUsage{ monitor: %s, owner: %s, entryCount: %d, waiters: %s, notify_waiters: %s }",
103 (owner != null) ? owner.getName() : "<NULL>",
243 if (IsLocked() && Objects.equals(runner, Monitors.getObjectMonitorUsage(lock).owner)) {
  /art/test/1932-monitor-events-misc/src/art/
Monitors.java 77 public final Thread owner; field in class:Monitors.MonitorUsage
84 Thread owner,
90 this.owner = owner;
101 "MonitorUsage{ monitor: %s, owner: %s, entryCount: %d, waiters: %s, notify_waiters: %s }",
103 (owner != null) ? owner.getName() : "<NULL>",
243 if (IsLocked() && Objects.equals(runner, Monitors.getObjectMonitorUsage(lock).owner)) {
  /art/test/1933-monitor-current-contended/src/art/
Monitors.java 77 public final Thread owner; field in class:Monitors.MonitorUsage
84 Thread owner,
90 this.owner = owner;
101 "MonitorUsage{ monitor: %s, owner: %s, entryCount: %d, waiters: %s, notify_waiters: %s }",
103 (owner != null) ? owner.getName() : "<NULL>",
243 if (IsLocked() && Objects.equals(runner, Monitors.getObjectMonitorUsage(lock).owner)) {
  /art/test/1934-jvmti-signal-thread/src/art/
Monitors.java 77 public final Thread owner; field in class:Monitors.MonitorUsage
84 Thread owner,
90 this.owner = owner;
101 "MonitorUsage{ monitor: %s, owner: %s, entryCount: %d, waiters: %s, notify_waiters: %s }",
103 (owner != null) ? owner.getName() : "<NULL>",
243 if (IsLocked() && Objects.equals(runner, Monitors.getObjectMonitorUsage(lock).owner)) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
RFC4519Style.java 36 public static final ASN1ObjectIdentifier owner = new ASN1ObjectIdentifier("2.5.4.32").intern(); field in class:RFC4519Style
93 DefaultSymbols.put(owner, "owner");
137 DefaultLookUp.put("owner", owner);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_deadlock_detector2.cc 157 atomic_store(&m->owner, 0, memory_order_relaxed);
200 uptr owner = atomic_load(&m->owner, memory_order_relaxed); local
201 if (owner == (uptr)cb->lt) {
279 uptr owner = atomic_load(&m->owner, memory_order_relaxed); local
280 if (owner == (uptr)cb->lt) {
286 CHECK_EQ(owner, 0);
288 VPrintf(3, "#%llu: DD::MutexAfterLock set owner\n", cb->lt->ctx);
291 atomic_store(&m->owner, (uptr)cb->lt, memory_order_relaxed)
311 uptr owner = atomic_load(&m->owner, memory_order_relaxed); local
    [all...]
  /external/desugar/java/com/google/devtools/build/android/desugar/
Java7Compatibility.java 126 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) {
130 bootclasspathReader.isKnown(owner),
132 + "not in the bootclasspath. Owner: %s, name: %s, desc: %s.",
134 owner, local
148 super.visitMethodInsn(opcode, owner, name, desc, itf);
158 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) {
161 && internalName.equals(owner)) {
168 super.visitMethodInsn(opcode, owner, name, desc, itf);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
NFRuleSet.java 70 final RuleBasedNumberFormat owner; field in class:NFRuleSet
98 * @param owner The formatter that owns this rule set
105 public NFRuleSet(RuleBasedNumberFormat owner, String[] descriptions, int index) throws IllegalArgumentException {
106 this.owner = owner;
186 this, predecessor, owner, tempRules); local
278 DecimalFormatSymbols decimalFormatSymbols = owner.getDecimalFormatSymbols();
472 rule = owner.getDefaultNaNRule();
491 rule = owner.getDefaultInfinityRule();
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
NFRuleSet.java 69 final RuleBasedNumberFormat owner; field in class:NFRuleSet
97 * @param owner The formatter that owns this rule set
104 public NFRuleSet(RuleBasedNumberFormat owner, String[] descriptions, int index) throws IllegalArgumentException {
105 this.owner = owner;
185 this, predecessor, owner, tempRules); local
277 DecimalFormatSymbols decimalFormatSymbols = owner.getDecimalFormatSymbols();
471 rule = owner.getDefaultNaNRule();
490 rule = owner.getDefaultInfinityRule();
    [all...]
  /external/protobuf/python/google/protobuf/pyext/
map_container.cc 23 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
88 // message pointer (and the owner) to a different message, a copy of the
96 shared_ptr<Message> owner; member in struct:google::protobuf::python::MapIterator
378 to->owner.reset(new_message);
419 self->owner = parent->owner;
519 self->owner.reset();
624 cmsg->owner = self->owner;
662 self->owner = parent->owner
    [all...]

Completed in 981 milliseconds

1 2 3 45 6 7 8 91011>>