HomeSort by relevance Sort by last modified time
    Searched refs:wp (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /frameworks/native/include/utils/
RefBase.h 198 class wp class in namespace:android
203 inline wp() : m_ptr(0) { } function in class:android::wp
205 wp(T* other);
206 wp(const wp<T>& other);
207 wp(const sp<T>& other);
208 template<typename U> wp(U* other);
209 template<typename U> wp(const sp<U>& other);
210 template<typename U> wp(const wp<U>& other)
    [all...]
  /frameworks/av/include/media/
IMediaDeathNotifier.h 39 static void addObitRecipient(const wp<IMediaDeathNotifier>& recipient);
40 static void removeObitRecipient(const wp<IMediaDeathNotifier>& recipient);
48 virtual void binderDied(const wp<IBinder>& who);
56 static SortedVector< wp<IMediaDeathNotifier> > sObitRecipients;
  /external/mksh/src/
funcs.c 68 c_true(const char **wp MKSH_A_UNUSED)
74 c_false(const char **wp MKSH_A_UNUSED)
221 c_pwd(const char **wp)
227 while ((optc = ksh_getopt(wp, &builtin_opt, "LP")) != -1)
238 wp += builtin_opt.optind;
240 if (wp[0]) {
264 c_print(const char **wp)
277 if (wp[0][0] == 'e') {
279 wp++;
282 if (*wp && !strcmp(*wp, "-n"))
2558 char **wp = *app; local
    [all...]
lex.c 170 statep->ls_start = Xsavepos(ws, wp); \
178 wp = Xrestpos(ws, wp, statep->ls_start); \
202 char *wp; /* output word pointer */ local
212 Xinit(ws, wp, 64, ATEMP);
221 *wp++ = OQUOTE;
265 Xcheck(ws, wp);
274 *wp++ = ADELIM;
275 *wp++ = c;
286 *wp = EOS
1692 char *wp, c; local
    [all...]
tree.c 270 wdvarput(struct shf *shf, const char *wp, int quotelevel, int opmode)
285 switch (*wp++) {
287 return (--wp);
290 c = *wp++;
300 c = *wp++;
316 while ((c = *wp++) != 0)
322 while ((c = *wp++) != 0)
341 if (*wp++ == '{')
343 while ((c = *wp++) != 0)
345 wp = wdvarput(shf, wp, 0, opmode)
    [all...]
  /frameworks/av/services/camera/libcameraservice/camera2/
BurstCapture.h 38 BurstCapture(wp<Camera2Client> client, wp<CaptureSequencer> sequencer);
49 wp<Camera2Client> mClient;
50 wp<CaptureSequencer> mSequencer;
FrameProcessor.h 40 FrameProcessor(wp<Camera2Client> client);
50 status_t registerListener(int32_t minId, int32_t maxId, wp<FilteredListener> listener);
51 status_t removeListener(int32_t minId, int32_t maxId, wp<FilteredListener> listener);
56 wp<Camera2Client> mClient;
65 wp<FilteredListener> listener;
JpegProcessor.h 44 JpegProcessor(wp<Camera2Client> client, wp<CaptureSequencer> sequencer);
56 wp<Camera2Client> mClient;
57 wp<CaptureSequencer> mSequencer;
CallbackProcessor.h 42 CallbackProcessor(wp<Camera2Client> client);
54 wp<Camera2Client> mClient;
ZslProcessor.h 49 ZslProcessor(wp<Camera2Client> client, wp<CaptureSequencer> sequencer);
76 wp<Camera2Client> mClient;
77 wp<CaptureSequencer> mSequencer;
CaptureSequencer.h 47 CaptureSequencer(wp<Camera2Client> client);
51 void setZslProcessor(wp<ZslProcessor> processor);
107 wp<Camera2Client> mClient;
108 wp<ZslProcessor> mZslProcessor;
StreamingProcessor.h 41 StreamingProcessor(wp<Camera2Client> client);
88 wp<Camera2Client> mClient;
  /external/libppp/src/
async.c 86 u_char *wp; local
88 wp = *cp;
91 *wp++ = HDLC_ESC;
95 *wp++ = HDLC_ESC;
98 *wp++ = c;
99 *cp = wp;
108 struct mbuf *wp; local
121 wp = bp;
123 while (wp) {
124 sp = MBUF_CTOP(wp);
    [all...]
pred.c 179 u_char *cp, *wp, *hp; local
186 hp = wp = MBUF_CTOP(mwp);
188 *wp++ = *cp++ = orglen >> 8;
189 *wp++ = *cp++ = orglen & 0377;
196 len = compress(state, bufp + 2, wp, orglen);
201 wp += len;
204 memcpy(wp, bufp + 2, orglen);
205 wp += orglen;
209 *wp++ = fcs & 0377;
210 *wp++ = fcs >> 8
222 struct mbuf *wp; local
    [all...]
  /external/elfutils/libasm/
asm_newscn.c 65 char *wp = flagstr; local
71 wp = stpcpy (wp, ", \"");
74 *wp++ = 'w';
76 *wp++ = 'a';
78 *wp++ = 'x';
80 *wp++ = 'M';
82 *wp++ = 'S';
84 *wp++ = 'L';
86 *wp++ = '"'
    [all...]
  /frameworks/base/core/java/android/text/
TextLine.java 625 TextPaint wp = mWorkPaint; local
626 wp.set(mPaint);
655 span.updateMeasureState(wp);
670 return wp.getTextRunCursor(mChars, spanStart, spanLimit - spanStart,
673 return wp.getTextRunCursor(mText, mStart + spanStart,
679 * @param wp
681 private static void expandMetricsFromPaint(FontMetricsInt fmi, TextPaint wp) {
688 wp.getFontMetricsInt(fmi);
707 * @param wp the working paint
721 private float handleText(TextPaint wp, int start, int end
886 TextPaint wp = mWorkPaint; local
895 TextPaint wp = mWorkPaint; local
912 TextPaint wp = mWorkPaint; local
1011 TextPaint wp = mWorkPaint; local
    [all...]
  /frameworks/av/media/libmedia/
IMediaDeathNotifier.cpp 31 SortedVector< wp<IMediaDeathNotifier> > IMediaDeathNotifier::sObitRecipients;
62 IMediaDeathNotifier::addObitRecipient(const wp<IMediaDeathNotifier>& recipient)
70 IMediaDeathNotifier::removeObitRecipient(const wp<IMediaDeathNotifier>& recipient)
78 IMediaDeathNotifier::DeathNotifier::binderDied(const wp<IBinder>& who) {
82 SortedVector< wp<IMediaDeathNotifier> > list;
  /external/chromium/net/http/
md4.cc 79 Uint8 *bp; const Uint32 *wp, *wpend; local
82 wp = in;
83 wpend = wp + (len >> 2);
85 for (; wp != wpend; ++wp, bp += 4)
87 bp[0] = (Uint8) ((*wp ) & 0xFF);
88 bp[1] = (Uint8) ((*wp >> 8) & 0xFF);
89 bp[2] = (Uint8) ((*wp >> 16) & 0xFF);
90 bp[3] = (Uint8) ((*wp >> 24) & 0xFF);
97 Uint32 *wp; const Uint8 *bp, *bpend local
    [all...]
  /frameworks/av/include/media/stagefright/foundation/
AHandlerReflector.h 40 wp<T> mTarget;
ALooperRoster.h 46 wp<ALooper> mLooper;
47 wp<AHandler> mHandler;
  /frameworks/native/include/binder/
IBinder.h 95 virtual void binderDied(const wp<IBinder>& who) = 0;
131 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
134 wp<DeathRecipient>* outRecipient = NULL) = 0;
BpBinder.h 47 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
50 wp<DeathRecipient>* outRecipient = NULL);
103 wp<DeathRecipient> recipient;
  /frameworks/base/core/java/android/view/
Window.java 489 void adjustLayoutParamsForSubWindow(WindowManager.LayoutParams wp) {
490 CharSequence curTitle = wp.getTitle();
491 if (wp.type >= WindowManager.LayoutParams.FIRST_SUB_WINDOW &&
492 wp.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
493 if (wp.token == null) {
496 wp.token = decor.getWindowToken();
501 if (wp.type == WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA) {
503 } else if (wp.type == WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA_OVERLAY) {
505 } else if (wp.type == WindowManager.LayoutParams.TYPE_APPLICATION_PANEL) {
507 } else if (wp.type == WindowManager.LayoutParams.TYPE_APPLICATION_SUB_PANEL)
    [all...]
  /frameworks/av/include/media/stagefright/timedtext/
TimedTextDriver.h 37 TimedTextDriver(const wp<MediaPlayerBase> &listener);
79 wp<MediaPlayerBase> mListener;
  /frameworks/av/media/libstagefright/timedtext/
TimedTextPlayer.h 37 TimedTextPlayer(const wp<MediaPlayerBase> &listener);
66 wp<MediaPlayerBase> mListener;

Completed in 348 milliseconds

1 2 3 4 5 6 7