HomeSort by relevance Sort by last modified time
    Searched refs:ownerUid (Results 1 - 25 of 46) sorted by null

1 2

  /frameworks/base/core/java/com/android/internal/net/
VpnInfo.java 29 public int ownerUid;
36 "ownerUid=" + ownerUid +
49 dest.writeInt(ownerUid);
58 info.ownerUid = source.readInt();
  /system/vold/fs/
Exfat.h 31 status_t Mount(const std::string& source, const std::string& target, int ownerUid, int ownerGid,
Vfat.h 32 bool remount, bool executable, int ownerUid, int ownerGid, int permMask,
Exfat.cpp 57 status_t Mount(const std::string& source, const std::string& target, int ownerUid, int ownerGid,
60 auto mountData = android::base::StringPrintf("uid=%d,gid=%d,fmask=%o,dmask=%o", ownerUid,
Vfat.cpp 117 bool remount, bool executable, int ownerUid, int ownerGid, int permMask,
133 ownerUid, ownerGid, permMask, permMask);
  /frameworks/base/services/core/java/com/android/server/pm/dex/
DexLogger.java 74 int ownerUid = appInfo.uid;
80 ownerUid, appInfo.volumeUuid, storageFlags);
97 writeDclEvent(ownerUid, message);
106 if (otherUid != -1 && otherUid != ownerUid) {
  /hardware/libhardware_legacy/include/hardware_legacy/
IMountService.h 51 virtual int createSecureContainer(String16 id, int sizeMb, String16 fstype, String16 key, int ownerUid) = 0;
54 virtual int mountSecureContainer(String16 id, String16 key, int ownerUid) = 0;
  /frameworks/base/services/core/java/com/android/server/display/
DisplayDeviceInfo.java 274 public int ownerUid;
334 || ownerUid != other.ownerUid
369 ownerUid = other.ownerUid;
400 if (ownerUid != 0 || ownerPackageName != null) {
402 sb.append(" (uid ").append(ownerUid).append(")");
VirtualDisplayAdapter.java 87 IMediaProjection projection, int ownerUid, String ownerPackageName, String name,
93 UNIQUE_ID_PREFIX + ownerPackageName + "," + ownerUid + "," + name + ",";
101 ownerUid, ownerPackageName, name, width, height, densityDpi, surface, flags,
211 int ownerUid, String ownerPackageName,
216 mOwnerUid = ownerUid;
376 mInfo.ownerUid = mOwnerUid;
LogicalDisplay.java 282 mBaseDisplayInfo.ownerUid = deviceInfo.ownerUid;
  /frameworks/native/services/surfaceflinger/
Client.cpp 151 const sp<IBinder>& parentHandle, int32_t windowType, int32_t ownerUid,
189 int32_t ownerUid;
194 sp<IBinder>* handle, int32_t windowType, int32_t ownerUid,
200 parent(parent), windowType(windowType), ownerUid(ownerUid) {
205 windowType, ownerUid, handle, gbp, parent);
212 windowType, ownerUid, gbp, &parent);
Client.h 61 const sp<IBinder>& parent, int32_t windowType, int32_t ownerUid,
  /frameworks/base/services/core/java/com/android/server/power/
Notifier.java 196 int ownerUid, int ownerPid, WorkSource workSource, String historyTag) {
200 + ", ownerUid=" + ownerUid + ", ownerPid=" + ownerPid
207 final boolean unimportantForLogging = ownerUid == Process.SYSTEM_UID
213 mBatteryStats.noteStartWakelock(ownerUid, ownerPid, tag, historyTag,
216 mAppOps.startOpNoThrow(AppOpsManager.OP_WAKE_LOCK, ownerUid, packageName);
224 public void onLongPartialWakeLockStart(String tag, int ownerUid, WorkSource workSource,
227 Slog.d(TAG, "onLongPartialWakeLockStart: ownerUid=" + ownerUid
235 mBatteryStats.noteLongPartialWakelockStart(tag, historyTag, ownerUid);
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/internal/
DisplayConfig.java 237 public int ownerUid;
310 ownerUid = other.ownerUid;
354 && ownerUid == other.ownerUid
397 ownerUid = other.ownerUid;
448 other.ownerUid = ownerUid;
524 if (ownerUid != 0 || ownerPackageName != null)
    [all...]
  /frameworks/base/libs/storage/include/storage/
IMountService.h 50 const int32_t ownerUid) = 0;
54 const String16& key, const int32_t ownerUid) = 0;
  /frameworks/native/libs/gui/
ISurfaceComposerClient.cpp 51 int32_t ownerUid, sp<IBinder>* handle,
56 windowType, ownerUid,
  /frameworks/base/services/core/java/com/android/server/input/
InputWindowHandle.java 89 public int ownerUid;
  /frameworks/native/libs/gui/include/gui/
ISurfaceComposerClient.h 53 int32_t ownerUid, sp<IBinder>* handle,
SurfaceComposerClient.h 116 int32_t ownerUid = -1 // UID of the task
128 int32_t ownerUid = -1 // UID of the task
  /frameworks/base/core/java/android/view/
DisplayInfo.java 244 public int ownerUid;
324 && ownerUid == other.ownerUid
368 ownerUid = other.ownerUid;
413 ownerUid = source.readInt();
458 dest.writeInt(ownerUid);
571 return Display.hasAccess(uid, flags, ownerUid);
664 if (ownerUid != 0 || ownerPackageName != null) {
666 sb.append(" (uid ").append(ownerUid).append(")")
    [all...]
SurfaceControl.java 64 int w, int h, int format, int flags, long parentObject, int windowType, int ownerUid)
502 * @param ownerUid UID of the window owner.
504 public Builder setMetadata(int windowType, int ownerUid) {
510 mOwnerUid = ownerUid;
564 * @param ownerUid A unique per-app ID.
569 SurfaceControl parent, int windowType, int ownerUid)
591 parent != null ? parent.mNativeObject : 0, windowType, ownerUid);
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_input_InputWindowHandle.cpp 54 jfieldID ownerUid;
155 mInfo->ownerUid = env->GetIntField(obj,
156 gInputWindowHandleClassInfo.ownerUid);
297 GET_FIELD_ID(gInputWindowHandleClassInfo.ownerUid, clazz,
298 "ownerUid", "I");
  /frameworks/base/libs/storage/
IMountService.cpp 243 const String16& key, const int32_t ownerUid)
251 data.writeInt32(ownerUid);
298 int32_t mountSecureContainer(const String16& id, const String16& key, const int32_t ownerUid)
304 data.writeInt32(ownerUid);
  /frameworks/base/services/core/java/com/android/server/wm/
InputConsumerImpl.java 81 mWindowHandle.ownerUid = Process.myUid();
  /frameworks/native/services/inputflinger/
InputWindow.h 135 int32_t ownerUid;

Completed in 294 milliseconds

1 2