• Home
  • Raw
  • Download

Lines Matching refs:data

40         Parcel data, reply;  in trackPlayer()  local
41 data.writeInterfaceToken(IAudioManager::getInterfaceDescriptor()); in trackPlayer()
42 data.writeInt32(1); // non-null PlayerIdCard parcelable in trackPlayer()
44 data.writeInt32((int32_t) playerType); in trackPlayer()
46 data.writeInt32((int32_t) usage); in trackPlayer()
47 data.writeInt32((int32_t) content); in trackPlayer()
48 data.writeInt32(0 /*source: none here, this is a player*/); in trackPlayer()
49 data.writeInt32(0 /*flags*/); in trackPlayer()
51 data.writeInt32(1 /*FLATTEN_TAGS*/); in trackPlayer()
52 data.writeString16(String16("")); // no tags in trackPlayer()
54 data.writeInt32(-1977 /*ATTR_PARCEL_IS_NULL_BUNDLE*/); // no bundle in trackPlayer()
56 data.writeStrongBinder(player); in trackPlayer()
58 const status_t res = remote()->transact(TRACK_PLAYER, data, &reply, 0); in trackPlayer()
71 Parcel data, reply; in playerAttributes() local
72 data.writeInterfaceToken(IAudioManager::getInterfaceDescriptor()); in playerAttributes()
73 data.writeInt32((int32_t) piid); in playerAttributes()
74 data.writeInt32(1); // non-null AudioAttributes parcelable in playerAttributes()
75 data.writeInt32((int32_t) usage); in playerAttributes()
76 data.writeInt32((int32_t) content); in playerAttributes()
77 data.writeInt32(0 /*source: none here, this is a player*/); in playerAttributes()
78 data.writeInt32(0 /*flags*/); in playerAttributes()
80 data.writeInt32(1 /*FLATTEN_TAGS*/); in playerAttributes()
81 data.writeString16(String16("")); // no tags in playerAttributes()
83 data.writeInt32(-1977 /*ATTR_PARCEL_IS_NULL_BUNDLE*/); // no bundle in playerAttributes()
84 return remote()->transact(PLAYER_ATTRIBUTES, data, &reply, IBinder::FLAG_ONEWAY); in playerAttributes()
88 Parcel data, reply; in playerEvent() local
89 data.writeInterfaceToken(IAudioManager::getInterfaceDescriptor()); in playerEvent()
90 data.writeInt32((int32_t) piid); in playerEvent()
91 data.writeInt32((int32_t) event); in playerEvent()
92 return remote()->transact(PLAYER_EVENT, data, &reply, IBinder::FLAG_ONEWAY); in playerEvent()
96 Parcel data, reply; in releasePlayer() local
97 data.writeInterfaceToken(IAudioManager::getInterfaceDescriptor()); in releasePlayer()
98 data.writeInt32((int32_t) piid); in releasePlayer()
99 return remote()->transact(RELEASE_PLAYER, data, &reply, IBinder::FLAG_ONEWAY); in releasePlayer()