| 61 | } |
| 62 | |
| 63 | bool PvdDefaultFileTransport::write(const uint8_t* inBytes, uint32_t inLength) |
| 64 | { |
| 65 | PX_ASSERT(mLocked); |
| 66 | PX_ASSERT(mFileBuffer); |
| 67 | if (mConnected) |
| 68 | { |
| 69 | uint32_t len = mFileBuffer->write(inBytes, inLength); |
| 70 | mWrittenData += len; |
| 71 | return len == inLength; |
| 72 | } |
| 73 | else |
| 74 | return false; |
| 75 | } |
| 76 | |
| 77 | PxPvdTransport& PvdDefaultFileTransport::lock() |
| 78 | { |
no outgoing calls
no test coverage detected