Home
last modified time | relevance | path

Searched refs:mParentSessionId (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/contentcapture/
DContentCaptureContext.java111 private int mParentSessionId = NO_SESSION_ID; field in ContentCaptureContext
202 return mParentSessionId == NO_SESSION_ID ? null in getParentSessionId()
203 : new ContentCaptureSessionId(mParentSessionId); in getParentSessionId()
208 mParentSessionId = parentSessionId; in setParentSessionId()
323 if (mParentSessionId != NO_SESSION_ID) { in dump()
324 pw.print(", parentId="); pw.print(mParentSessionId); in dump()
355 if (mParentSessionId != NO_SESSION_ID) { in toString()
356 builder.append(", parentId=").append(mParentSessionId); in toString()
DContentCaptureEvent.java137 private int mParentSessionId = NO_SESSION_ID; field in ContentCaptureEvent
190 mParentSessionId = parentSessionId; in setParentSessionId()
217 return mParentSessionId; in getParentSessionId()
364 if (mParentSessionId != NO_SESSION_ID) { in dump()
365 pw.print(", parentSessionId="); pw.print(mParentSessionId); in dump()
382 if (mType == TYPE_SESSION_STARTED && mParentSessionId != NO_SESSION_ID) { in toString()
383 string.append(", parent=").append(mParentSessionId); in toString()
422 parcel.writeInt(mParentSessionId); in writeToParcel()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageInstallerSession.java269 private int mParentSessionId; field in PackageInstallerSession
438 this.mParentSessionId = parentSessionId; in PackageInstallerSession()
490 info.parentSessionId = mParentSessionId; in generateInfo()
844 + mParentSessionId + " and may not be committed directly."); in commit()
2051 + mParentSessionId + " and may not be abandoned directly."); in abandon()
2105 || (childSession.hasParentSessionId() && childSession.mParentSessionId != sessionId) in addChildSessionId()
2147 && mParentSessionId != SessionInfo.INVALID_ID) { in setParentSessionId()
2149 + "set to " + mParentSessionId); in setParentSessionId()
2151 this.mParentSessionId = parentSessionId; in setParentSessionId()
2156 return mParentSessionId != SessionInfo.INVALID_ID; in hasParentSessionId()
[all …]