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

1 2 3 4

  /frameworks/base/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;
mediametadataretriever.h 97 virtual void binderDied(const wp<IBinder>& who);
  /frameworks/base/include/utils/
RefBase.h 30 template<typename T> class wp;
38 inline bool operator _op_ (const wp<T>& o) const { \
49 inline bool operator _op_ (const wp<U>& o) const { \
220 template<typename Y> friend class wp;
222 // Optimization for wp::promote().
234 class wp
239 inline wp() : m_ptr(0) { }
241 wp(T* other);
242 wp(const wp<T>& other)
403 wp<T>::wp(T* other) function in class:android::wp
410 wp<T>::wp(const wp<T>& other) function in class:android::wp
417 wp<T>::wp(const sp<T>& other) function in class:android::wp
426 wp<T>::wp(U* other) function in class:android::wp
433 wp<T>::wp(const wp<U>& other) function in class:android::wp
443 wp<T>::wp(const sp<U>& other) function in class:android::wp
    [all...]
  /external/elfutils/libasm/
asm_newscn.c 53 char *wp = flagstr; local
59 wp = stpcpy (wp, ", \"");
62 *wp++ = 'w';
64 *wp++ = 'a';
66 *wp++ = 'x';
68 *wp++ = 'M';
70 *wp++ = 'S';
72 *wp++ = 'L';
74 *wp++ = '"'
    [all...]
  /frameworks/base/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/base/include/binder/
MemoryHeapPmem.h 67 void remove(const wp<MemoryPmem>& memory);
72 SortedVector< wp<MemoryPmem> > mAllocations;
IBinder.h 94 virtual void binderDied(const wp<IBinder>& who) = 0;
130 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
133 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;
Binder.h 44 virtual status_t unlinkToDeath( const wp<DeathRecipient>& recipient,
47 wp<DeathRecipient>* outRecipient = NULL);
Parcel.h 95 status_t writeWeakBinder(const wp<IBinder>& val);
139 wp<IBinder> readWeakBinder() const;
238 const wp<IBinder>& binder, flat_binder_object* out);
242 const flat_binder_object& flat, wp<IBinder>* out);
  /frameworks/base/include/media/stagefright/foundation/
ALooperRoster.h 41 wp<ALooper> mLooper;
42 wp<AHandler> mHandler;
AHandlerReflector.h 24 wp<T> mTarget;
  /frameworks/base/services/sensorservice/
SensorService.h 96 SortedVector< wp<SensorEventConnection> > mConnections;
100 bool removeConnection(const wp<SensorEventConnection>& connection);
104 SortedVector< wp<SensorEventConnection> > getActiveConnections() const;
124 SortedVector< wp<SensorEventConnection> > mActiveConnections;
132 void cleanupConnection(const wp<SensorEventConnection>& connection);
  /frameworks/base/core/java/android/view/
Window.java 382 WindowManager.LayoutParams wp = (WindowManager.LayoutParams)params; local
383 CharSequence curTitle = wp.getTitle();
384 if (wp.type >= WindowManager.LayoutParams.FIRST_SUB_WINDOW &&
385 wp.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
386 if (wp.token == null) {
389 wp.token = decor.getWindowToken();
394 if (wp.type == WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA) {
396 } else if (wp.type == WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA_OVERLAY) {
398 } else if (wp.type == WindowManager.LayoutParams.TYPE_APPLICATION_PANEL) {
400 } else if (wp.type == WindowManager.LayoutParams.TYPE_APPLICATION_SUB_PANEL)
    [all...]
  /frameworks/base/core/jni/android/opengl/
poly_clip.cpp 62 float *up, *vp, *wp; local
82 wp = (float *)&q->vert[q->n].sx;
83 for(int i = 0; i < 4; i++, wp++, up++, vp++) {
84 *wp = *up+t*(*vp-*up);
  /frameworks/base/services/audioflinger/
AudioFlinger.h 250 virtual void binderDied(const wp<IBinder>& who);
301 TrackBase(const wp<ThreadBase>& thread,
353 wp<ThreadBase> mThread;
441 Track( const wp<ThreadBase>& thread,
530 OutputTrack( const wp<ThreadBase>& thread,
543 wp<ThreadBase>& thread() { return mThread; }
615 const wp<EffectHandle>& handle);
662 SortedVector< wp<Track> > mActiveTracks;
723 uint32_t prepareTracks_l(const SortedVector< wp<Track> >& activeTracks,
830 RecordTrack(const wp<ThreadBase>& thread
    [all...]
  /external/ppp/pppd/
auth.c 492 struct wordlist *wp; local
494 wp = (struct wordlist *) malloc(sizeof(struct wordlist) + l);
495 if (wp == NULL)
497 wp->word = (char *) (wp + 1);
498 wp->next = noauth_addrs;
499 BCOPY(addr, wp->word, l);
500 noauth_addrs = wp;
514 struct wordlist *wp; local
516 wp = (struct wordlist *) malloc(sizeof(struct wordlist) + l)
2255 struct wordlist *wp = permitted_numbers; local
    [all...]
  /external/e2fsprogs/intl/
l10nflist.c 375 char *wp;
392 wp = stpcpy (retval, "iso");
394 wp = retval;
398 *wp++ = tolower ((unsigned char) codeset[cnt]);
400 *wp++ = codeset[cnt];
402 *wp = '\0';
373 char *wp; local
  /frameworks/base/include/camera/
Camera.h 224 virtual void binderDied(const wp<IBinder>& who);
232 virtual void binderDied(const wp<IBinder>& who);
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 52 virtual void binderDied(const wp<IBinder>& who);
  /frameworks/base/cmds/system_server/library/
system_init.cpp 43 virtual void binderDied(const wp<IBinder>& who)
  /frameworks/base/services/surfaceflinger/DisplayHardware/
DisplayHardwareBase.h 52 wp<SurfaceFlinger> mFlinger;
  /frameworks/base/libs/binder/
IMemory.cpp 46 virtual void binderDied(const wp<IBinder>& who);
60 void free_heap(const wp<IBinder>& binder);
63 KeyedVector< wp<IBinder>, heap_info_t > mHeapCache;
383 void HeapCache::binderDied(const wp<IBinder>& binder)
415 free_heap( wp<IBinder>(binder) );
418 void HeapCache::free_heap(const wp<IBinder>& binder)
Binder.cpp 125 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags,
126 wp<DeathRecipient>* outRecipient)

Completed in 614 milliseconds

1 2 3 4