Searched refs:slot (Results 151 - 175 of 189) sorted by relevance

12345678

/frameworks/av/media/libstagefright/
H A DMediaSync.cpp667 int slot; local
669 status_t status = mOutput->attachBuffer(&slot, bufferItem.mGraphicBuffer);
673 status = mOutput->queueBuffer(slot, queueInput, &queueOutput);
/frameworks/rs/cpp/
H A DrsDispatch.h113 typedef void (*ProgramBindConstantsFnPtr) (RsContext rsc, RsProgram vp, uint32_t slot, RsAllocation constants);
114 typedef void (*ProgramBindTextureFnPtr) (RsContext rsc, RsProgramFragment pf, uint32_t slot, RsAllocation a);
115 typedef void (*ProgramBindSamplerFnPtr) (RsContext rsc, RsProgramFragment pf, uint32_t slot, RsSampler s);
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicConvolve5x5.cpp30 void setGlobalVar(uint32_t slot, const void *data, size_t dataLength) override;
31 void setGlobalObj(uint32_t slot, ObjectBase *data) override;
64 void RsdCpuScriptIntrinsicConvolve5x5::setGlobalObj(uint32_t slot, ObjectBase *data) { argument
65 rsAssert(slot == 1);
69 void RsdCpuScriptIntrinsicConvolve5x5::setGlobalVar(uint32_t slot, argument
71 rsAssert(slot == 0);
/frameworks/base/core/java/android/net/
H A DIConnectivityManager.aidl178 void stopKeepalive(in Network network, int slot);
/frameworks/base/libs/hwui/
H A DSkiaShader.cpp55 static inline void bindUniformColor(int slot, FloatColor color) { argument
56 glUniform4fv(slot, 1, reinterpret_cast<const float*>(&color));
/frameworks/compile/libbcc/tools/bcc/
H A DMain.cpp63 llvm::cl::desc("Lists of kernels to merge (as source-and-slot "
175 std::cerr << "source " << sourceStr << ", slot " << slotStr << std::endl;
178 int slot = std::stoi(slotStr); local
179 planList.push_back(std::make_pair(source, slot));
/frameworks/native/libs/vr/libvrflinger/
H A Ddisplay_surface.cpp322 size_t slot; local
323 auto buffer_status = direct_queue_->Dequeue(0, &slot, &acquire_fence);
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DComposerHal.h191 * the composer uses slot to look up the client target from its cache.
194 Error setClientTarget(Display display, uint32_t slot,
218 /* see setClientTarget for the purpose of slot */
219 Error setLayerBuffer(Display display, Layer layer, uint32_t slot,
H A DHWC2.h245 uint32_t slot, const android::sp<android::GraphicBuffer>& target,
312 [[clang::warn_unused_result]] Error setBuffer(uint32_t slot,
H A DComposerHal.cpp465 Error Composer::setClientTarget(Display display, uint32_t slot, argument
488 mWriter.setClientTarget(slot, handle, acquireFence, dataspace, damage);
582 uint32_t slot, const sp<GraphicBuffer>& buffer, int acquireFence)
603 mWriter.setLayerBuffer(slot, handle, acquireFence);
581 setLayerBuffer(Display display, Layer layer, uint32_t slot, const sp<GraphicBuffer>& buffer, int acquireFence) argument
H A DHWC2.cpp632 Error Display::setClientTarget(uint32_t slot, const sp<GraphicBuffer>& target, argument
637 auto intError = mDevice.mComposer->setClientTarget(mId, slot, target,
827 Error Layer::setBuffer(uint32_t slot, const sp<GraphicBuffer>& buffer, argument
832 mId, slot, buffer, fenceFd);
H A DHWComposer.h100 status_t setClientTarget(int32_t displayId, uint32_t slot,
/frameworks/rs/
H A DrsScriptC_Lib.cpp226 uint32_t slot,
231 target->runForEach(rsc, slot, (const Allocation**)in, numInputs, out, usr, usrBytes, call);
224 rsrForEach(Context *rsc, Script *target, uint32_t slot, uint32_t numInputs, Allocation **in, Allocation *out, const void *usr, uint32_t usrBytes, const RsScriptCall *call) argument
H A DrsContext.cpp762 void rsi_ContextBindSampler(Context *rsc, uint32_t slot, RsSampler vs) { argument
765 if (slot > RS_MAX_SAMPLER_SLOT) {
766 ALOGE("Invalid sampler slot");
770 s->bindToContext(&rsc->mStateSampler, slot);
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp116 size_t slot = ((x - minUs) * 100) / (maxUs - minUs); local
117 if (slot == 100) { slot = 99; }
119 ++counts[slot];
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DStatusBarIconView.java135 public StatusBarIconView(Context context, String slot, StatusBarNotification sbn) { argument
136 this(context, slot, sbn, false);
139 public StatusBarIconView(Context context, String slot, StatusBarNotification sbn, argument
144 mSlot = slot;
310 Log.w(TAG, "OOM while inflating " + mIcon.icon + " for slot " + mSlot);
315 Log.w(TAG, "No icon for slot " + mSlot + "; " + mIcon.icon);
419 Log.d("View", debugIndent(depth) + "slot=" + mSlot);
466 return "StatusBarIconView(slot=" + mSlot + " icon=" + mIcon
/frameworks/native/libs/vr/libbufferhub/include/private/dvr/
H A Dbufferhub_rpc.h160 // that slot id can be shared between |android::dvr::BufferHubQueueProducer|
233 void(size_t slot));
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java1553 * @param slot Integer used to identify each request.
1558 public int startSendingOffloadedPacket(int slot, KeepalivePacketData keepAlivePacket, argument
1567 slot, srcMac, keepAlivePacket, period);
1573 * @param slot id - same as startSendingOffloadedPacket call.
1576 public int stopSendingOffloadedPacket(int slot) { argument
1577 return mWifiVendorHal.stopSendingOffloadedPacket(slot);
H A DWifiStateMachine.java1445 int startWifiIPPacketOffload(int slot, KeepalivePacketData packetData, int intervalSeconds) { argument
1446 int ret = mWifiNative.startSendingOffloadedPacket(slot, packetData, intervalSeconds * 1000);
1448 loge("startWifiIPPacketOffload(" + slot + ", " + intervalSeconds +
1456 int stopWifiIPPacketOffload(int slot) { argument
1457 int ret = mWifiNative.stopSendingOffloadedPacket(slot);
1459 loge("stopWifiIPPacketOffload(" + slot + "): hardware error " + ret);
4343 int slot = message.arg1;
4344 int ret = stopWifiIPPacketOffload(slot);
4346 mNetworkAgent.onPacketKeepaliveEvent(slot, ret);
6280 int slot
[all...]
H A DWifiVendorHal.java2009 * @param slot
2016 int slot, byte[] srcMac, KeepalivePacketData keepAlivePacket, int periodInMs) {
2017 enter("slot=% periodInMs=%").c(slot).c(periodInMs).flush();
2026 slot,
2044 * @param slot id - same as startSendingOffloadedPacket call.
2047 public int stopSendingOffloadedPacket(int slot) { argument
2048 enter("slot=%").c(slot).flush();
2053 WifiStatus status = mIWifiStaIface.stopSendingKeepAlivePackets(slot);
2015 startSendingOffloadedPacket( int slot, byte[] srcMac, KeepalivePacketData keepAlivePacket, int periodInMs) argument
[all...]
/frameworks/rs/script_api/
H A Drs_for_each.spec221 arg: int slot
226 summary: (Internal API) Launch a kernel in the current Script (with the slot number)
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp1037 const int slot = sGLExtentionSlot; local
1039 ALOGE_IF(slot >= MAX_NUMBER_OF_GL_EXTENSIONS,
1043 if (!addr && (slot < MAX_NUMBER_OF_GL_EXTENSIONS)) {
1050 cnx->hooks[egl_connection_t::GLESv1_INDEX]->ext.extensions[slot] =
1051 cnx->hooks[egl_connection_t::GLESv2_INDEX]->ext.extensions[slot] =
1057 addr = gExtensionForwarders[slot];
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiVendorHalTest.java876 int slot = 13;
886 assertTrue(0 == mWifiVendorHal.startSendingOffloadedPacket(slot, srcMac, kap, millis));
889 eq(slot), any(), anyShort(), any(), any(), eq(millis));
894 int slot = 13;
899 assertTrue(0 == mWifiVendorHal.stopSendingOffloadedPacket(slot));
901 verify(mIWifiStaIface).stopSendingKeepAlivePackets(eq(slot));
/frameworks/native/vulkan/nulldrv/
H A Dnull_driver.cpp1436 void CmdBeginQuery(VkCommandBuffer cmdBuffer, VkQueryPool queryPool, uint32_t slot, VkQueryControlFlags flags) { argument
1439 void CmdEndQuery(VkCommandBuffer cmdBuffer, VkQueryPool queryPool, uint32_t slot) { argument
1445 void CmdWriteTimestamp(VkCommandBuffer cmdBuffer, VkPipelineStageFlagBits pipelineStage, VkQueryPool queryPool, uint32_t slot) { argument
/frameworks/av/media/libstagefright/omx/
H A DGraphicBufferSource.cpp51 * holds a reference to the buffer, and maintains which buffer slot it belongs to (if any), and
52 * whether it is still in a buffer slot. It also maintains whether there are any outstanging acquire
53 * references to it (by buffers acquired from the slot) mainly so that we can keep a debug
63 * Create using a buffer cached in a slot.
65 CachedBuffer(slot_id slot, const sp<GraphicBuffer> &graphicBuffer) argument
67 mSlot(slot),
73 * Returns the cache slot that this buffer is cached in, or -1 if it is no longer cached.
75 * This assumes that -1 slot id is invalid; though, it is just a benign collision used for
190 * Returns the slot that this buffer is cached at, or -1 otherwise.
192 * This assumes that -1 slot i
[all...]

Completed in 626 milliseconds

12345678