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

1 2

  /external/chromium/base/win/
object_watcher.cc 14 struct ObjectWatcher::Watch : public Task {
50 Watch* watch = new Watch; local
51 watch->watcher = this;
52 watch->object = object;
53 watch->origin_loop = MessageLoop::current();
54 watch->delegate = delegate;
55 watch->did_signal = false;
61 if (!RegisterWaitForSingleObject(&watch->wait_object, object, DoneWaiting
122 Watch* watch = static_cast<Watch*>(param); local
    [all...]
  /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/kernel-headers/original/linux/
inotify.h 19 __s32 wd; /* watch descriptor */
20 __u32 mask; /* watch mask */
26 /* the following are legal, implemented events that user-space can watch for */
40 /* the following are legal events. they are sent as needed to any watch */
50 #define IN_ONLYDIR 0x01000000 /* only watch the path if it is a directory */
52 #define IN_MASK_ADD 0x20000000 /* add to the mask of an already existing watch */
72 * struct inotify_watch - represents a watch request on a specific inode
76 * ih, inode, and wd are never written to once the watch is created.
88 __s32 wd; /* watch descriptor */
89 __u32 mask; /* event mask for this watch */
    [all...]
  /external/chromium/base/files/
file_path_watcher_linux.cc 44 typedef int Watch; // Watch descriptor used by AddWatch and RemoveWatch.
45 static const Watch kInvalidWatch = -1;
47 // Watch directory |path| for changes. |watcher| will be notified on each
49 Watch AddWatch(const FilePath& path, FilePathWatcherImpl* watcher);
51 // Remove |watch|. Returns true on success.
52 bool RemoveWatch(Watch watch, FilePathWatcherImpl* watcher);
66 base::hash_map<Watch, WatcherSet> watchers_;
91 // Called for each event coming from the watch. |fired_watch| identifies th
257 Watch watch = inotify_add_watch(inotify_fd_, path.value().c_str(), local
    [all...]
  /external/chromium_org/base/files/
file_path_watcher_linux.cc 44 typedef int Watch; // Watch descriptor used by AddWatch and RemoveWatch.
45 static const Watch kInvalidWatch = -1;
47 // Watch directory |path| for changes. |watcher| will be notified on each
49 Watch AddWatch(const FilePath& path, FilePathWatcherImpl* watcher);
51 // Remove |watch|. Returns true on success.
52 bool RemoveWatch(Watch watch, FilePathWatcherImpl* watcher);
66 base::hash_map<Watch, WatcherSet> watchers_;
91 // Called for each event coming from the watch. |fired_watch| identifies th
251 Watch watch = inotify_add_watch(inotify_fd_, path.value().c_str(), local
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/
action_choice_util.js 29 id: 'watch-single-video',
30 class: 'watch-single-video-icon',
action_choice.js 44 this.actionsById_['watch-single-video'];
443 this.recordAction_('watch-single-video');
513 'watch-single-video',
file_watcher.js 115 * Changes the watched directory. In case of a fake entry, the watch is
  /external/chromium_org/chrome/renderer/resources/extensions/
tag_watcher.js 32 // Expose a function to watch the |tagName| introduction via mutation observer.
34 // We employee mutation observer to watch on any introduction of |tagName|
  /external/chromium_org/v8/test/mjsunit/regress/
regress-88858.js 40 o.watch(0, (arguments-1901)('o'));
41 p.watch(0, make_watcher('p'));
  /external/v8/test/mjsunit/regress/
regress-88858.js 40 o.watch(0, (arguments-1901)('o'));
41 p.watch(0, make_watcher('p'));
  /external/chromium_org/dbus/
bus.cc 43 class Watch : public base::MessagePumpLibevent::Watcher {
45 explicit Watch(DBusWatch* watch)
46 : raw_watch_(watch) {
50 virtual ~Watch() {
74 const bool persistent = true; // Watch persistently.
105 // Unlike Watch, Timeout is a ref counted object, to ensure that |this| of
415 // Watch Disconnected signal.
1036 Watch* watch = new Watch(raw_watch); local
1047 Watch* watch = static_cast<Watch*>(dbus_watch_get_data(raw_watch)); local
1055 Watch* watch = static_cast<Watch*>(dbus_watch_get_data(raw_watch)); local
    [all...]
  /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/chromium_org/chrome/browser/extensions/api/media_galleries_private/
gallery_watch_manager.cc 52 // This class does a recursive watch on the gallery file path and holds a list
77 // Sets up the watch operation for the specified |gallery_path_|. On
99 // Remove the watch references for the extension specified by the
118 // Map to keep track of the extension and its corresponding watch count.
166 return file_watcher_.Watch(
331 scoped_refptr<GalleryFilePathWatcher> watch(
337 if (!watch->SetupWatch())
339 gallery_watchers_[watch_path] = watch.get();
350 // Remove the renderer process for this watch.
  /external/chromium_org/tools/page_cycler/webpagereplay/tests/
2012Q3.js 43 "http://www.youtube.com/watch?v=xvN9Ri1GmuY&feature=g-sptl&cid=inp-hs-edt",
2012Q2.js 31 "http://www.youtube.com/watch?v=xvN9Ri1GmuY&feature=g-sptl&cid=inp-hs-edt"],
  /external/chromium_org/v8/test/mjsunit/compiler/
compare.js 76 // Test non-primitive values and watch for valueOf call order.
  /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...

Completed in 1971 milliseconds

1 2