Home
last modified time | relevance | path

Searched refs:bufId (Results 1 – 17 of 17) sorted by relevance

/aosp12/system/core/debuggerd/libdebuggerd/test/
H A Dlog_fake.cpp49 extern "C" int __android_log_buf_write(int bufId, int prio, const char* tag, const char* msg) { in __android_log_buf_write() argument
50 g_fake_log_buf += std::to_string(bufId) + ' ' + std::to_string(prio) + ' '; in __android_log_buf_write()
/aosp12/system/unwinding/libunwindstack/tests/
H A DLogFake.cpp52 extern "C" int __android_log_buf_write(int bufId, int prio, const char* tag, const char* msg) { in __android_log_buf_write() argument
53 g_fake_log_buf += std::to_string(bufId) + ' ' + std::to_string(prio) + ' '; in __android_log_buf_write()
/aosp12/bionic/libc/malloc_debug/tests/
H A Dlog_fake.cpp66 extern "C" int __android_log_buf_write(int bufId, int prio, const char* tag, const char* msg) { in __android_log_buf_write() argument
67 g_fake_log_buf += std::to_string(bufId) + ' ' + std::to_string(prio) + ' '; in __android_log_buf_write()
/aosp12/hardware/interfaces/camera/device/3.4/default/
H A DExternalCameraUtils.cpp188 uint64_t bufId, buffer_handle_t buf, in importBufferImpl() argument
192 if (buf == nullptr && bufId == BUFFER_ID_NO_BUFFER) { in importBufferImpl()
197 ALOGE("%s: bufferId %" PRIu64 " has null buffer handle!", __FUNCTION__, bufId); in importBufferImpl()
203 if (cbs.count(bufId) == 0) { in importBufferImpl()
205 ALOGE("%s: bufferId %" PRIu64 " has null buffer handle!", __FUNCTION__, bufId); in importBufferImpl()
215 cbs[bufId] = importedBuf; in importBufferImpl()
218 *outBufPtr = &cbs[bufId]; in importBufferImpl()
H A DExternalCameraDeviceSession.cpp508 uint64_t bufId, buffer_handle_t buf, in importBuffer() argument
512 return importBufferLocked(streamId, bufId, buf, outBufPtr, allowEmptyBuf); in importBuffer()
516 uint64_t bufId, buffer_handle_t buf, in importBufferLocked() argument
521 bufId, buf, outBufPtr, allowEmptyBuf); in importBufferLocked()
/aosp12/packages/services/Car/cpp/computepipe/aidl/aidl_api/android.automotive.computepipe.runner/1/android/automotive/computepipe/runner/
H A DPacketDescriptor.aidl21 int bufId;
/aosp12/packages/services/Car/cpp/computepipe/aidl/aidl_api/android.automotive.computepipe.runner/current/android/automotive/computepipe/runner/
H A DPacketDescriptor.aidl21 int bufId;
/aosp12/packages/services/Car/cpp/computepipe/aidl/android/automotive/computepipe/runner/
H A DPacketDescriptor.aidl31 int bufId;
/aosp12/hardware/interfaces/camera/device/3.4/default/include/ext_device_v3_4_impl/
H A DExternalCameraUtils.h228 uint64_t bufId, buffer_handle_t buf,
261 int32_t streamId, uint64_t bufId, buffer_handle_t buf,
H A DExternalCameraDeviceSession.h232 uint64_t bufId, buffer_handle_t buf,
295 uint64_t bufId, buffer_handle_t buf,
/aosp12/packages/services/Car/cpp/computepipe/runner/client_interface/
H A DAidlClientImpl.cpp107 desc.bufId = 0; in DispatchSemanticData()
151 desc.bufId = packetHandle->getBufferId(); in DispatchPixelData()
/aosp12/hardware/interfaces/camera/device/3.5/default/
H A DCameraDeviceSession.cpp141 uint64_t bufId = it->second; in popBufferId() local
146 return bufId; in popBufferId()
/aosp12/hardware/interfaces/camera/device/3.2/default/
H A DCameraDeviceSession.cpp271 uint64_t bufId, buffer_handle_t buf, in importBuffer() argument
275 if (buf == nullptr && bufId == BUFFER_ID_NO_BUFFER) { in importBuffer()
280 ALOGE("%s: bufferId %" PRIu64 " has null buffer handle!", __FUNCTION__, bufId); in importBuffer()
287 if (cbs.count(bufId) == 0) { in importBuffer()
295 cbs[bufId] = importedBuf; in importBuffer()
298 *outBufPtr = &cbs[bufId]; in importBuffer()
H A DCameraDeviceSession.h319 uint64_t bufId, buffer_handle_t buf,
/aosp12/hardware/interfaces/camera/device/3.6/default/
H A DExternalCameraOfflineSession.cpp285 uint64_t bufId, buffer_handle_t buf, in importBuffer() argument
291 bufId, buf, outBufPtr, allowEmptyBuf); in importBuffer()
/aosp12/hardware/interfaces/camera/device/3.6/default/include/ext_device_v3_6_impl/
H A DExternalCameraOfflineSession.h117 uint64_t bufId, buffer_handle_t buf,
/aosp12/hardware/interfaces/camera/provider/2.4/vts/functional/
H A DVtsHalCameraProviderV2_4TargetTest.cpp439 uint64_t bufId = mNextBufferId++; in getBufferId() local
440 mBufferIdMap[buf] = bufId; in getBufferId()
441 mReversedBufMap[bufId] = anb; in getBufferId()
442 return std::make_pair(true, bufId); in getBufferId()