| 17 | } |
| 18 | |
| 19 | bool JASAudioReseter::start(u32 param_0, bool stop) { |
| 20 | if (mDoneFlag == false) { |
| 21 | return false; |
| 22 | } |
| 23 | mThreadStopFlag = stop; |
| 24 | |
| 25 | JAS_CS_START |
| 26 | if (!JASDriver::registerDspSyncCallback(callback, this)) { |
| 27 | #line 40 |
| 28 | JUT_WARNING_F2("%s", "Failed JASAudioReseter start\n"); |
| 29 | return false; |
| 30 | } else { |
| 31 | mDSPLevel = JASDriver::getDSPLevel(); |
| 32 | _0 = param_0; |
| 33 | mDoneFlag = false; |
| 34 | return true; |
| 35 | } |
| 36 | JAS_CS_END |
| 37 | } |
| 38 |
nothing calls this directly
no test coverage detected