Home | History | Annotate | Download | only in oboeservice

Lines Matching defs:handle

63 // The port handle is only available when the stream is started.
83 // advance to next legal handle value
85 aaudio_handle_t AAudioStreamTracker::bumpHandle(aaudio_handle_t handle) {
86 handle++;
88 if (handle <= 0) {
89 handle = 1;
91 return handle;
96 aaudio_handle_t handle = mPreviousHandle;
97 // Assign a unique handle.
99 handle = bumpHandle(handle);
100 sp<AAudioServiceStreamBase> oldServiceStream = mStreamsByHandle[handle];
101 // Is this an unused handle? It would be extremely unlikely to wrap
102 // around and collide with a very old handle. But just in case.
104 mStreamsByHandle[handle] = serviceStream;
108 mPreviousHandle = handle;
109 return handle;
123 aaudio_handle_t handle = it.second->getHandle();
124 result << " 0x" << std::setfill('0') << std::setw(8) << std::hex << handle