Lines Matching refs:mPlayerPrepared
52 mPlayerPrepared(PREPARE_NOT_STARTED) in MediaPlayerNotificationClient()
131 if (PREPARE_IN_PROGRESS == mPlayerPrepared) { in notify()
132 mPlayerPrepared = PREPARE_COMPLETED_SUCCESSFULLY; in notify()
181 if (PREPARE_IN_PROGRESS == mPlayerPrepared) { in notify()
182 mPlayerPrepared = PREPARE_COMPLETED_UNSUCCESSFULLY; in notify()
227 assert(mPlayerPrepared == PREPARE_NOT_STARTED); in beforePrepare()
228 mPlayerPrepared = PREPARE_IN_PROGRESS; in beforePrepare()
234 assert(mPlayerPrepared != PREPARE_NOT_STARTED); in blockUntilPlayerPrepared()
235 while (mPlayerPrepared == PREPARE_IN_PROGRESS) { in blockUntilPlayerPrepared()
238 assert(mPlayerPrepared == PREPARE_COMPLETED_SUCCESSFULLY || in blockUntilPlayerPrepared()
239 mPlayerPrepared == PREPARE_COMPLETED_UNSUCCESSFULLY); in blockUntilPlayerPrepared()
240 return mPlayerPrepared == PREPARE_COMPLETED_SUCCESSFULLY; in blockUntilPlayerPrepared()