HomeSort by relevance Sort by last modified time
    Searched refs:wp (Results 126 - 150 of 287) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/mksh/src/
shf.c 147 shf->rp = shf->wp = shf->buf;
174 shf->rp = shf->wp = shf->buf;
214 shf->buf = shf->rp = shf->wp = (unsigned char *)buf;
354 shf->wp = nbuf + (shf->wp - shf->buf);
361 ssize_t n, ntowrite = shf->wp - shf->buf;
380 shf->wp = shf->buf + ntowrite;
388 shf->wp = shf->buf;
394 shf->wp = shf->buf;
610 *shf->wp++ = c
    [all...]
exec.c 319 te.pos.wp = t->args;
951 shcomexec(const char **wp)
955 tp = ktsearch(&builtins, *wp, hash(*wp));
956 return (call_builtin(tp, wp, "shcomexec"));
1269 call_builtin(struct tbl *tp, const char **wp, const char *where)
1274 internal_errorf("%s: %s", where, wp[0]);
1275 builtin_argv0 = wp[0];
1280 rv = (*tp->val.f)(wp);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
windowsx.h16     [all...]
multimon.h 204 WINDOWPLACEMENT wp; local
207 if(IsIconic(hWnd) ? GetWindowPlacement(hWnd,&wp) : GetWindowRect(hWnd,&wp.rcNormalPosition)) return xMonitorFromRect(&wp.rcNormalPosition,dwFlags);
  /external/lldb/tools/debugserver/source/MacOSX/
MachThreadList.cpp 524 MachThreadList::EnableHardwareWatchpoint (const DNBBreakpoint* wp) const
527 if (wp != NULL)
536 if ((hw_index = m_threads[idx]->EnableHardwareWatchpoint(wp, also_set_on_task)) == INVALID_NUB_HW_INDEX)
554 MachThreadList::DisableHardwareWatchpoint (const DNBBreakpoint* wp) const
556 if (wp != NULL)
566 if (!m_threads[idx]->DisableHardwareWatchpoint(wp, also_set_on_task))
MachProcess.cpp 746 DNBBreakpoint *wp = m_watchpoints.FindByAddress(addr); local
749 if (wp)
752 wp = m_watchpoints.Add(addr, length, hardware);
753 wp->SetIsWatchpoint(watch_flags);
757 DNBLogThreadedIf(LOG_WATCHPOINTS, "MachProcess::CreateWatchpoint ( addr = 0x%8.8llx, length = %llu) => %p", (uint64_t)addr, (uint64_t)length, wp);
758 return wp;
932 DNBBreakpoint *wp = m_watchpoints.FindByAddress(addr); local
933 if (wp)
936 if (remove && wp->Release() > 0)
939 nub_addr_t addr = wp->Address()
1051 DNBBreakpoint *wp = m_watchpoints.FindByAddress(addr); local
    [all...]
  /frameworks/native/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;
392 void HeapCache::binderDied(const wp<IBinder>& binder)
424 free_heap( wp<IBinder>(binder) );
427 void HeapCache::free_heap(const wp<IBinder>& binder)
Binder.cpp 127 const wp<DeathRecipient>& /*recipient*/, void* /*cookie*/,
128 uint32_t /*flags*/, wp<DeathRecipient>* /*outRecipient*/)
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
main_wnd.h 180 bool OnMessage(UINT msg, WPARAM wp, LPARAM lp, LRESULT* result);
182 static LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp);
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
ProcessKDP.h 184 EnableWatchpoint (lldb_private::Watchpoint *wp, bool notify = true);
187 DisableWatchpoint (lldb_private::Watchpoint *wp, bool notify = true);
  /external/lldb/source/Plugins/Process/POSIX/
ProcessPOSIX.h 117 EnableWatchpoint(lldb_private::Watchpoint *wp, bool notify = true);
120 DisableWatchpoint(lldb_private::Watchpoint *wp, bool notify = true);
  /frameworks/av/include/camera/
ProCamera.h 262 ProFrameListener(wp<ProCamera> camera, int streamID) {
276 wp<ProCamera> mCamera;
  /frameworks/av/media/libmediaplayerservice/
Drm.h 132 virtual void binderDied(const wp<IBinder> &the_late_who);
148 static KeyedVector<String8, wp<SharedLibrary> > mLibraryPathToOpenLibraryMap;
  /frameworks/av/services/camera/libcameraservice/api1/
Camera2Client.h 121 wp<camera2::FrameProcessor::FilteredListener> listener,
124 wp<camera2::FrameProcessor::FilteredListener> listener);
  /system/core/include/utils/
Looper.h 87 WeakMessageHandler(const wp<MessageHandler>& handler);
91 wp<MessageHandler> mHandler;
  /frameworks/av/media/libstagefright/include/
TimedEventQueue.h 67 virtual void binderDied(const wp<IBinder>& who);
  /frameworks/av/services/camera/libcameraservice/device2/
Camera2Device.h 79 buffer_handle_t *buffer, wp<BufferReleasedListener> listener);
295 const wp<BufferReleasedListener> &releaseListener);
317 wp<StreamAdapter> mBaseStream;
321 wp<BufferReleasedListener> releaseListener;
  /frameworks/native/include/gui/
StreamSplitter.h 122 virtual void binderDied(const wp<IBinder>& who);
  /frameworks/wilhelm/src/android/
android_GenericMediaPlayer.h 49 const wp<GenericMediaPlayer> mGenericMediaPlayer;
  /external/qemu/
cputlb.c 210 CPUWatchpoint *wp; local
260 QTAILQ_FOREACH(wp, &env->watchpoints, entry) {
261 if (vaddr == (wp->vaddr & TARGET_PAGE_MASK)) {
exec.c 241 CPUWatchpoint *wp; local
250 wp = g_malloc(sizeof(*wp));
252 wp->vaddr = addr;
253 wp->len_mask = len_mask;
254 wp->flags = flags;
258 QTAILQ_INSERT_HEAD(&env->watchpoints, wp, entry);
260 QTAILQ_INSERT_TAIL(&env->watchpoints, wp, entry);
265 *watchpoint = wp;
274 CPUWatchpoint *wp; local
299 CPUWatchpoint *wp, *next; local
1552 CPUWatchpoint *wp; local
    [all...]
  /frameworks/av/services/camera/libcameraservice/common/
FrameProcessorBase.cpp 30 FrameProcessorBase::FrameProcessorBase(wp<CameraDeviceBase> device) :
50 int32_t maxId, wp<FilteredListener> listener, bool sendPartials) {
73 wp<FilteredListener> listener) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
OldBigIntegerTest.java 205 BigInteger wp = a.multiply(b); local
208 wp.isProbablePrime(80) );
209 BigInteger wpMinusOne = wp.subtract(BigInteger.ONE);
  /frameworks/av/services/audiopolicy/
AudioPolicyService.h 135 virtual void binderDied(const wp<IBinder>& who);
233 AudioCommandThread (String8 name, const wp<AudioPolicyService>& service);
354 wp<AudioPolicyService> mService;
472 virtual void binderDied(const wp<IBinder>& who);
478 const wp<AudioPolicyService> mService;
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3Device.h 134 buffer_handle_t *buffer, wp<BufferReleasedListener> listener);
362 RequestThread(wp<Camera3Device> parent,
435 static int getId(const wp<Camera3Device> &device);
471 wp<Camera3Device> mParent;
472 wp<camera3::StatusTracker> mStatusTracker;

Completed in 1324 milliseconds

1 2 3 4 56 7 8 91011>>