Searched refs:slot (Results 1 - 25 of 189) sorted by path

12345678

/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/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/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_imdct_synth.cpp319 for (int32 slot = 1; slot < FILTERBANK_BANDS; slot += 6)
321 int32 temp1 = out[slot ];
322 int32 temp2 = out[slot+2];
323 int32 temp3 = out[slot+4];
324 out[slot ] = -temp1;
325 out[slot+2] = -temp2;
326 out[slot+4] = -temp3;
336 int32 slot; local
[all...]
/frameworks/av/media/libstagefright/omx/1.0/
H A DWGraphicBufferProducer.cpp39 int32_t slot, requestBuffer_cb _hidl_cb) {
41 status_t status = mBase->requestBuffer(slot, &buf);
62 int slot; local
66 &slot, &fence,
78 static_cast<int32_t>(slot),
88 static_cast<int32_t>(slot),
96 static_cast<int32_t>(slot),
110 Return<int32_t> TWGraphicBufferProducer::detachBuffer(int32_t slot) { argument
111 return static_cast<int32_t>(mBase->detachBuffer(slot));
160 int32_t slot, cons
38 requestBuffer( int32_t slot, requestBuffer_cb _hidl_cb) argument
159 queueBuffer( int32_t slot, const QueueBufferInput& input, queueBuffer_cb _hidl_cb) argument
195 cancelBuffer( int32_t slot, const hidl_handle& fence) argument
[all...]
H A DWGraphicBufferProducer.h59 Return<void> requestBuffer(int32_t slot, requestBuffer_cb _hidl_cb)
67 Return<int32_t> detachBuffer(int32_t slot) override;
72 int32_t slot, const HGraphicBufferProducer::QueueBufferInput& input,
74 Return<int32_t> cancelBuffer(int32_t slot, const hidl_handle& fence)
/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...]
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3StreamSplitter.cpp235 int slot = getSlotForOutputLocked(output, tracker.getBuffer()); local
242 res = output->queueBuffer(slot, queueInput, &queueOutput);
245 SP_LOGV("%s: Queuing buffer to buffer queue %p slot %d returns %d",
246 __FUNCTION__, output.get(), slot, res);
287 int slot = getSlotForOutputLocked(gbp, buffer); local
288 if (slot != BufferItem::INVALID_BUFFER_SLOT) {
289 gbp->detachBuffer(slot);
290 outputSlots[slot].clear();
312 int slot = BufferItem::INVALID_BUFFER_SLOT; local
318 res = gbp->attachBuffer(&slot, g
[all...]
/frameworks/av/services/mediaanalytics/
H A DMediaAnalyticsService.cpp460 int slot = 0; local
479 AString distilled = (*it)->dumpSummary(slot, only);
511 int slot = 0; local
528 result.appendFormat("%5d: %s\n", slot, entry.c_str());
529 slot++;
H A DMetricsSummarizer.cpp97 AString MetricsSummarizer::dumpSummary(int &slot) argument
99 return dumpSummary(slot, NULL);
102 AString MetricsSummarizer::dumpSummary(int &slot, const char *only) argument
114 snprintf(buf, sizeof(buf), "%5d: ", slot);
118 slot++;
H A DMetricsSummarizer.h52 AString dumpSummary(int &slot);
53 AString dumpSummary(int &slot, const char *only);
/frameworks/base/core/java/android/app/
H A DStatusBarManager.java198 public void setIcon(String slot, int iconId, int iconLevel, String contentDescription) { argument
202 svc.setIcon(slot, mContext.getPackageName(), iconId, iconLevel,
210 public void removeIcon(String slot) { argument
214 svc.removeIcon(slot);
221 public void setIconVisibility(String slot, boolean visible) { argument
225 svc.setIconVisibility(slot, visible);
/frameworks/base/core/java/android/net/
H A DIConnectivityManager.aidl178 void stopKeepalive(in Network network, int slot);
H A DNetworkAgent.java163 * arg1 = the slot number of the keepalive to start
174 * arg1 = slot number of the keepalive to stop.
188 * arg1 = slot number of the keepalive
487 public void onPacketKeepaliveEvent(int slot, int reason) { argument
488 queueOrSendMessage(EVENT_PACKET_KEEPALIVE, slot, reason);
/frameworks/base/core/java/com/android/internal/statusbar/
H A DIStatusBar.aidl29 void setIcon(String slot, in StatusBarIcon icon);
30 void removeIcon(String slot);
H A DIStatusBarService.aidl38 void setIcon(String slot, String iconPackage, int iconId, int iconLevel, String contentDescription);
39 void setIconVisibility(String slot, boolean visible);
40 void removeIcon(String slot);
/frameworks/base/core/tests/coretests/src/android/util/
H A DListItemFactory.java104 for (Slot slot : slots) {
105 switch (slot) {
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListButtonsDiagonalAcrossItems.java52 final Slot slot = position == 0 ? Slot.Left :
55 parent.getContext(), desiredHeight, slot);
/frameworks/base/libs/hwui/
H A DProgram.cpp98 int slot = glGetAttribLocation(mProgramId, name); local
99 mAttributes.add(name, slot);
100 return slot;
118 int slot = glGetUniformLocation(mProgramId, name); local
119 mUniforms.add(name, slot);
120 return slot;
H A DSkiaShader.cpp55 static inline void bindUniformColor(int slot, FloatColor color) { argument
56 glUniform4fv(slot, 1, reinterpret_cast<const float*>(&color));
/frameworks/base/media/java/android/media/
H A DAudioManager.java4264 int slot = 0;
4267 deviceList[slot++] = new AudioDeviceInfo(port);
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardUpdateMonitor.java790 SimData(State state, int slot, int id) { argument
792 slotId = slot;
1770 * Find the next SubscriptionId for a SIM in the given state, favoring lower slot numbers first.
1777 int bestSlotId = Integer.MAX_VALUE; // Favor lowest slot first
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
H A DTileServices.java104 final String slot = tile.getComponent().getClassName();
105 mMainHandler.post(() -> mHost.getIconController().removeIcon(slot));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DCommandQueue.java102 default void setIcon(String slot, StatusBarIcon icon) { } argument
103 default void removeIcon(String slot) { } argument
154 public void setIcon(String slot, StatusBarIcon icon) { argument
158 new Pair<String, StatusBarIcon>(slot, icon)).sendToTarget();
162 public void removeIcon(String slot) { argument
165 mHandler.obtainMessage(MSG_ICON, OP_REMOVE_ICON, 0, slot).sendToTarget();
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/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DDemoStatusIcons.java125 private void updateSlot(String slot, String iconPkg, int iconId) { argument
133 if (slot.equals(v.getTag())) {
154 v.setTag(slot);

Completed in 489 milliseconds

12345678