Lines Matching refs:mPlayerPrepared
52 mPlayerPrepared(PREPARE_NOT_STARTED) in MediaPlayerNotificationClient()
130 if (PREPARE_IN_PROGRESS == mPlayerPrepared) { in notify()
131 mPlayerPrepared = PREPARE_COMPLETED_SUCCESSFULLY; in notify()
179 if (PREPARE_IN_PROGRESS == mPlayerPrepared) { in notify()
180 mPlayerPrepared = PREPARE_COMPLETED_UNSUCCESSFULLY; in notify()
224 assert(mPlayerPrepared == PREPARE_NOT_STARTED); in beforePrepare()
225 mPlayerPrepared = PREPARE_IN_PROGRESS; in beforePrepare()
231 assert(mPlayerPrepared != PREPARE_NOT_STARTED); in blockUntilPlayerPrepared()
232 while (mPlayerPrepared == PREPARE_IN_PROGRESS) { in blockUntilPlayerPrepared()
235 assert(mPlayerPrepared == PREPARE_COMPLETED_SUCCESSFULLY || in blockUntilPlayerPrepared()
236 mPlayerPrepared == PREPARE_COMPLETED_UNSUCCESSFULLY); in blockUntilPlayerPrepared()
237 return mPlayerPrepared == PREPARE_COMPLETED_SUCCESSFULLY; in blockUntilPlayerPrepared()