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

1 2 3

  /frameworks/native/opengl/tests/gralloc/
gralloc.cpp 65 StopWatch watch("memset");
71 StopWatch watch("memcpy baseline");
77 StopWatch watch("memcpy from gralloc");
83 StopWatch watch("memcpy into gralloc");
90 StopWatch watch("lamecpy baseline");
96 StopWatch watch("lamecpy from gralloc");
102 StopWatch watch("lamecpy into gralloc");
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_common.c 60 DBusWatch *watch, eloop_event_type type)
67 dbus_watch_handle(watch, DBUS_WATCH_READABLE);
69 dbus_watch_handle(watch, DBUS_WATCH_WRITABLE);
71 dbus_watch_handle(watch, DBUS_WATCH_ERROR);
100 static dbus_bool_t add_watch(DBusWatch *watch, void *data)
106 if (!dbus_watch_get_enabled(watch))
109 flags = dbus_watch_get_flags(watch);
110 fd = dbus_watch_get_unix_fd(watch);
113 priv, watch);
117 priv, watch);
    [all...]
  /frameworks/base/media/mca/filterfw/native/core/
time_util.cpp 77 NamedStopWatch* watch = FindPtrOrNull(watches, watch_name); local
78 if (!watch) {
79 watch = new NamedStopWatch(watch_name);
80 watches[watch_name] = watch;
82 return watch;
time_util.h 58 explicit ScopedTimer(NamedStopWatch* watch)
59 : mWatch(watch) { mWatch->Start(); }
  /frameworks/base/media/mca/filterpacks/native/base/
time_util.cpp 75 NamedStopWatch* watch = FindPtrOrNull(watches, watch_name); local
76 if (!watch) {
77 watch = new NamedStopWatch(watch_name);
78 watches[watch_name] = watch;
80 return watch;
time_util.h 58 explicit ScopedTimer(NamedStopWatch* watch)
59 : mWatch(watch) { mWatch->Start(); }
  /external/dnsmasq/src/
dbus.c 59 struct watch { struct
60 DBusWatch *watch; member in struct:watch
61 struct watch *next;
65 static dbus_bool_t add_watch(DBusWatch *watch, void *data)
67 struct watch *w;
70 if (w->watch == watch)
73 if (!(w = whine_malloc(sizeof(struct watch))))
76 w->watch = watch;
    [all...]
  /external/selinux/policycoreutils/restorecond/
restorecond.h 39 extern int watch(int fd, const char *watch_file);
Makefile 24 restorecond.o utmpwatcher.o stringslist.o user.o watch.o: restorecond.h
26 restorecond: ../setfiles/restore.o restorecond.o utmpwatcher.o stringslist.o user.o watch.o
restorecond.c 117 /* trigger a failure in the watch */
133 Add a file to the watch list. We are watching for file creation, so we actually
134 put the watch on the directory and then examine all files created in that directory
228 while (watch(master_fd, watch_file) == 0) {
watch.c 86 syslog(LOG_ERR, "Unable to watch (%s) %s\n",
163 Inotify watch loop
165 int watch(int fd, const char *watch_file) function
  /frameworks/base/docs/html/
jd_collections.js 19 "http://www.youtube.com/watch?v=0r36OJaeMo4",
20 "http://www.youtube.com/watch?v=1Iw7Tg_afKk",
21 "http://www.youtube.com/watch?v=TieksFvD-7o",
22 "http://www.youtube.com/watch?v=MCoh4Pxs_ok"
44 "http://www.youtube.com/watch?v=p4gmvHyuZzw",
45 "http://www.youtube.com/watch?v=YaG_ljfzeUw",
46 "http://www.youtube.com/watch?v=XOcCOBe8PTc"
101 "http://www.youtube.com/watch?v=fEEulSk1kNY",
102 "http://www.youtube.com/watch?v=-3ry8PxcJJA",
103 "http://www.youtube.com/watch?v=_kKTGK-Cb_4
    [all...]
  /external/v8/test/mjsunit/regress/
regress-88858.js 40 o.watch(0, (arguments-1901)('o'));
41 p.watch(0, make_watcher('p'));
  /cts/tests/tests/hardware/src/android/hardware/cts/
LowRamDeviceTest.java 82 Boolean watch = mPackageManager.hasSystemFeature(PackageManager.FEATURE_WATCH); local
84 Log.i(TAG, String.format("density=%d, supports64Bit=%s, screenSize=%d, watch=%s",
85 density, supports64Bit, screenSize, watch));
87 if (watch) {
  /external/libvncserver/x11vnc/
appshare.c 254 static Window watch[WMAX]; variable
301 if (watch[i] == win) {
643 if (watch[i] != None) {
644 stop(watch[i]);
813 Window wchk = watch[i];
884 watch[free] = win;
893 if (watch[i] == win) {
894 watch[i] = None;
978 Window win = watch[i];
1176 if (watch[i] != None)
    [all...]
avahi.c 173 #include <avahi-common/thread-watch.h>
  /frameworks/base/packages/Keyguard/scripts/
new_merge.py 57 WATCH=[]
101 WATCH.append(file);
157 if len(WATCH) > 0:
158 for watch in WATCH:
159 if file.find(watch) >= 0:
  /external/lldb/test/functionalities/thread/concurrent_events/
TestConcurrentEvents.py 363 watch = self.inferior_target.FindWatchpointByID(watchid)
364 reason_str = "%s hit %d times" % (lldbutil.get_description(watch), watch.GetHitCount())
442 # threads doing each action (break/crash/signal/watch)
  /external/v8/test/mjsunit/compiler/
compare.js 76 // Test non-primitive values and watch for valueOf call order.
  /external/libvorbis/doc/
Vorbis_I_spec.tex 87 % NOTE: Things to watch out for: Some chars are reserved in LaTeX. You need to translate them...
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
collections.py 502 >>> d = Counter('watch')
504 >>> c['h'] # four 'h' in which, witch, and watch
539 >>> c.subtract(Counter('watch')) # subtract elements from another counter
540 >>> c['h'] # 2 in which, minus 1 in witch, minus 1 in watch
542 >>> c['w'] # 1 in which, minus 1 in witch, minus 1 in watch
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
collections.py 502 >>> d = Counter('watch')
504 >>> c['h'] # four 'h' in which, witch, and watch
539 >>> c.subtract(Counter('watch')) # subtract elements from another counter
540 >>> c['h'] # 2 in which, minus 1 in witch, minus 1 in watch
542 >>> c['w'] # 1 in which, minus 1 in witch, minus 1 in watch
  /external/skia/tools/skpdiff/
diff_viewer.js 74 scope.$watch('updatedMaskSize', function(updatedSize) {
85 scope.$watch('magnifyCenter', function(magCenter) {
  /frameworks/base/docs/html/training/
training_toc.cs     [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/bench/
wikipedia.css 801 /* Watch/Unwatch Icon Styling */
803 #ca-watch.icon a {
817 background-image: url(images/watch-icons.png);
822 #ca-watch.icon a {
829 #ca-watch.icon a:hover,
830 #ca-watch.icon a:focus {
834 #ca-watch.icon a.loading {
836 background-image: url(images/watch-icon-loading.gif);
840 #ca-watch.icon a span {
    [all...]

Completed in 494 milliseconds

1 2 3