Searched refs:IBinderParcelable (Results 1 – 6 of 6) sorted by relevance
22 public class IBinderParcelable implements Parcelable { class25 public IBinderParcelable(IBinder source) { in IBinderParcelable() method in IBinderParcelable37 public static final Parcelable.Creator<IBinderParcelable>38 CREATOR = new Parcelable.Creator<IBinderParcelable>() {40 public IBinderParcelable createFromParcel(Parcel source) {41 return new IBinderParcelable(source);44 public IBinderParcelable[] newArray(int size) {45 return new IBinderParcelable[size];49 private IBinderParcelable(Parcel source) { in IBinderParcelable() method in IBinderParcelable
26 import com.android.compatibility.common.util.IBinderParcelable;68 IBinderParcelable parcelable in onStart()69 = (IBinderParcelable) intent.getExtras().getParcelable(REPORT_OBJ_NAME); in onStart()
28 import com.android.compatibility.common.util.IBinderParcelable;138 IBinderParcelable parcelable in onStart()139 = (IBinderParcelable) intent.getExtras().getParcelable(REPORT_OBJ_NAME); in onStart()
36 import com.android.compatibility.common.util.IBinderParcelable;155 bundle.putParcelable(LocalService.REPORT_OBJ_NAME, new IBinderParcelable(stateReceiver)); in newCommand()162 bundle.putParcelable(LocalService.REPORT_OBJ_NAME, new IBinderParcelable(new Binder())); in newCommand()
79 "src/com/android/compatibility/common/util/IBinderParcelable.java",
73 import com.android.compatibility.common.util.IBinderParcelable;476 bundle.putParcelable(LocalService.REPORT_OBJ_NAME, new IBinderParcelable(mStateReceiver)); in startExpectResult()1098 bundle.putParcelable(LocalService.REPORT_OBJ_NAME, new IBinderParcelable(mStateReceiver)); in testRunningServices()