Searched defs:persistent (Results 1 - 25 of 56) sorted by relevance

123

/external/skia/experimental/SkV8Example/
H A DPath2D.h30 v8::Persistent<v8::Object>& persistent() { function in class:Path2D
/external/libbrillo/brillo/message_loops/
H A Dfake_message_loop.h46 bool persistent,
67 bool persistent; member in struct:brillo::FakeMessageLoop::ScheduledTask
H A Dglib_message_loop.h33 bool persistent,
70 bool persistent; member in struct:brillo::GlibMessageLoop::ScheduledTask
H A Dmessage_loop.h78 // will be executed. If |persistent| is true, the file descriptor will
86 bool persistent,
92 bool persistent,
95 tracked_objects::Location(), fd, mode, persistent, task);
90 WatchFileDescriptor(int fd, WatchMode mode, bool persistent, const base::Closure& task) argument
H A Dfake_message_loop.cc40 bool persistent,
45 tasks_.emplace(current_id, ScheduledTask{from_here, persistent, task});
77 << (scheduled_task_ref->second.persistent ?
80 if (scheduled_task_ref->second.persistent) {
135 << "Pending " << (task.second.persistent ? "persistent " : "")
36 WatchFileDescriptor( const tracked_objects::Location& from_here, int fd, WatchMode mode, bool persistent, const base::Closure& task) argument
H A Dglib_message_loop.cc36 // Note: While we store persistent = false in the ScheduledTask object, we
57 bool persistent,
96 this, from_here, task_id, 0, persistent, std::move(task)};
112 << (persistent ? " persistently" : " just once")
180 if (!scheduled_task->persistent) {
187 return scheduled_task->persistent;
53 WatchFileDescriptor( const tracked_objects::Location& from_here, int fd, WatchMode mode, bool persistent, const Closure &task) argument
H A Dbase_message_loop.cc104 bool persistent,
127 from_here, this, task_id, fd, base_mode, persistent, task));
134 << (persistent ? " persistently" : " just once")
311 bool persistent,
314 fd_(fd), base_mode_(base_mode), persistent_(persistent), closure_(task) {}
393 // In the persistent case we just run the callback. If this callback cancels
100 WatchFileDescriptor( const tracked_objects::Location& from_here, int fd, WatchMode mode, bool persistent, const Closure &task) argument
306 IOTask(const tracked_objects::Location& location, BaseMessageLoop* loop, MessageLoop::TaskId task_id, int fd, base::MessageLoopForIO::Mode base_mode, bool persistent, const Closure& task) argument
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
H A Dp2p_group_add.py15 print " %s -i <interface_name> [-p <persistent>] \ " \
23 print " -o = persistent group object path"
50 global persistent
64 def __init__(self,interface_name,wpas_dbus_interface,persistent,frequency,
69 self.persistent = persistent
124 self.P2PDictionary = {'persistent':self.persistent}
159 persistent = False variable
187 persistent
[all...]
/external/valgrind/drd/
H A Ddrd_suppression.c116 * Start tracing memory accesses in the range [a1,a2). If persistent == True,
120 const Bool persistent)
126 a1, a2 - a1, persistent ? "persistent" : "non-persistent");
129 if (persistent)
159 * non-persistent address ranges.
119 start_tracing_address_range(const Addr a1, const Addr a2, const Bool persistent) argument
/external/jmdns/src/javax/jmdns/
H A DJmDNS.java211 * @param persistent
215 public abstract ServiceInfo getServiceInfo(String type, String name, boolean persistent); argument
228 * @param persistent
232 public abstract ServiceInfo getServiceInfo(String type, String name, boolean persistent, long timeout); argument
255 * @param persistent
258 public abstract void requestServiceInfo(String type, String name, boolean persistent); argument
279 * @param persistent
284 public abstract void requestServiceInfo(String type, String name, boolean persistent, long timeout); argument
H A DJmmDNS.java186 * @param persistent
191 public abstract ServiceInfo[] getServiceInfos(String type, String name, boolean persistent); argument
204 * @param persistent
209 public abstract ServiceInfo[] getServiceInfos(String type, String name, boolean persistent, long timeout); argument
229 * @param persistent
233 public abstract void requestServiceInfo(String type, String name, boolean persistent); argument
255 * @param persistent
261 public abstract void requestServiceInfo(String type, String name, boolean persistent, long timeout); argument
H A DServiceInfo.java247 * @param persistent
253 public static ServiceInfo create(final String type, final String name, final int port, final int weight, final int priority, final boolean persistent, final String text) { argument
254 return new ServiceInfoImpl(type, name, "", port, weight, priority, persistent, text);
272 * @param persistent
278 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final boolean persistent, final String text) { argument
279 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, persistent, text);
295 * @param persistent
301 public static ServiceInfo create(final String type, final String name, final int port, final int weight, final int priority, final boolean persistent, final Map<String, ?> props) { argument
302 return new ServiceInfoImpl(type, name, "", port, weight, priority, persistent, props);
320 * @param persistent
326 create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final boolean persistent, final Map<String, ?> props) argument
349 create(final String type, final String name, final int port, final int weight, final int priority, final boolean persistent, final byte[] text) argument
374 create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final boolean persistent, final byte[] text) argument
395 create(final Map<Fields, String> qualifiedNameMap, final int port, final int weight, final int priority, final boolean persistent, final Map<String, ?> props) argument
[all...]
/external/jmdns/src/javax/jmdns/impl/
H A DJmmDNSImpl.java189 public ServiceInfo[] getServiceInfos(String type, String name, boolean persistent) { argument
190 return this.getServiceInfos(type, name, persistent, DNSConstants.SERVICE_INFO_TIMEOUT);
198 public ServiceInfo[] getServiceInfos(final String type, final String name, final boolean persistent, final long timeout) { argument
209 result.add(mDNS.getServiceInfo(type, name, persistent, timeout));
236 public void requestServiceInfo(String type, String name, boolean persistent) { argument
237 this.requestServiceInfo(type, name, persistent, DNSConstants.SERVICE_INFO_TIMEOUT);
254 public void requestServiceInfo(final String type, final String name, final boolean persistent, final long timeout) { argument
263 mDNS.requestServiceInfo(type, name, persistent, timeout);
H A DDNSRecord.java206 public ServiceInfo getServiceInfo(boolean persistent) { argument
208 ServiceInfoImpl info = (ServiceInfoImpl) super.getServiceInfo(persistent);
251 public ServiceInfo getServiceInfo(boolean persistent) { argument
253 ServiceInfoImpl info = (ServiceInfoImpl) super.getServiceInfo(persistent);
393 public ServiceInfo getServiceInfo(boolean persistent) { argument
394 ServiceInfoImpl info = new ServiceInfoImpl(this.getQualifiedNameMap(), 0, 0, 0, persistent, (byte[]) null);
493 public ServiceInfo getServiceInfo(boolean persistent) { argument
497 return new ServiceInfoImpl(map, 0, 0, 0, persistent, (byte[]) null);
499 return new ServiceInfoImpl(this.getQualifiedNameMap(), 0, 0, 0, persistent, (byte[]) null);
502 return new ServiceInfoImpl(this.getQualifiedNameMap(), 0, 0, 0, persistent, (byt
609 getServiceInfo(boolean persistent) argument
810 getServiceInfo(boolean persistent) argument
936 getServiceInfo(boolean persistent) argument
989 getServiceInfo(boolean persistent) argument
[all...]
H A DServiceInfoImpl.java123 * @param persistent
127 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, String text) { argument
128 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, (byte[]) null);
146 * @param persistent
150 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, Map<String, ?> props) { argument
151 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, textFromProperties(props));
161 * @param persistent
165 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, byte text[]) { argument
166 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, text);
169 public ServiceInfoImpl(Map<Fields, String> qualifiedNameMap, int port, int weight, int priority, boolean persistent, Ma argument
173 ServiceInfoImpl(Map<Fields, String> qualifiedNameMap, int port, int weight, int priority, boolean persistent, String text) argument
185 ServiceInfoImpl(Map<Fields, String> qualifiedNameMap, int port, int weight, int priority, boolean persistent, byte text[]) argument
[all...]
/external/libchrome/base/message_loop/
H A Dmessage_pump_libevent.cc135 bool persistent,
147 int event_mask = persistent ? EV_PERSIST : 0;
134 WatchFileDescriptor(int fd, bool persistent, int mode, FileDescriptorWatcher *controller, Watcher *delegate) argument
H A Dmessage_loop.cc727 bool persistent,
733 persistent,
763 bool persistent,
769 persistent,
725 WatchFileDescriptor( int fd, bool persistent, MessagePumpLibevent::Mode mode, MessagePumpLibevent::FileDescriptorWatcher *controller, MessagePumpLibevent::Watcher *delegate) argument
762 WatchFileDescriptor(int fd, bool persistent, Mode mode, FileDescriptorWatcher* controller, Watcher* delegate) argument
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPreference.java28 protected boolean persistent = false; field in class:ShadowPreference
78 return persistent;
83 return persistent;
87 public void setPersistent(boolean persistent) { argument
88 this.persistent = persistent;
93 return persistent ? persistedInt : defaultReturnValue;
99 return persistent;
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p_invitation.c187 int persistent; local
227 persistent = *msg.invitation_flags & P2P_INVITATION_FLAGS_TYPE;
231 * the request was for a persistent group if the attribute is
235 persistent = 1;
260 &go, group_bssid, &op_freq, persistent, &intersection,
655 p2p_dbg(p2p, "Request to invite peer " MACSTR " role=%d persistent=%d "
/external/wpa_supplicant_8/src/p2p/
H A Dp2p_invitation.c187 int persistent; local
227 persistent = *msg.invitation_flags & P2P_INVITATION_FLAGS_TYPE;
231 * the request was for a persistent group if the attribute is
235 persistent = 1;
260 &go, group_bssid, &op_freq, persistent, &intersection,
655 p2p_dbg(p2p, "Request to invite peer " MACSTR " role=%d persistent=%d "
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p_invitation.c187 int persistent; local
227 persistent = *msg.invitation_flags & P2P_INVITATION_FLAGS_TYPE;
231 * the request was for a persistent group if the attribute is
235 persistent = 1;
260 &go, group_bssid, &op_freq, persistent, &intersection,
655 p2p_dbg(p2p, "Request to invite peer " MACSTR " role=%d persistent=%d "
/external/wpa_supplicant_8/wpa_supplicant/hidl/1.0/
H A Dhidl.cpp476 struct wpa_supplicant *wpa_s, const struct wpa_ssid *ssid, int persistent,
490 hidl_manager->notifyP2pGroupStarted(wpa_s, ssid, persistent, client);
475 wpas_hidl_notify_p2p_group_started( struct wpa_supplicant *wpa_s, const struct wpa_ssid *ssid, int persistent, int client) argument
H A Dhidl.h73 struct wpa_supplicant *wpa_s, const struct wpa_ssid *ssid, int persistent,
179 struct wpa_supplicant *wpa_s, const struct wpa_ssid *ssid, int persistent,
178 wpas_hidl_notify_p2p_group_started( struct wpa_supplicant *wpa_s, const struct wpa_ssid *ssid, int persistent, int client) argument
/external/v8/include/
H A Dv8-util.h79 * a std:map backing map from StdMapTraits and holds non-weak persistent
312 static PersistentContainerValue ClearAndLeak(Global<V>* persistent) { argument
313 V* v = persistent->val_;
314 persistent->val_ = 0;
318 static PersistentContainerValue Leak(Global<V>* persistent) { argument
319 return reinterpret_cast<PersistentContainerValue>(persistent->val_);
378 Global<V> persistent(this->isolate(), value);
379 return SetUnique(key, &persistent);
393 Global<V> SetUnique(const K& key, Global<V>* persistent) { argument
395 Local<V> value(Local<V>::New(this->isolate(), *persistent));
460 SetUnique(const K& key, Global<V>* persistent) argument
592 Append(Global<V> persistent) argument
638 ClearAndLeak(Global<V>* persistent) argument
[all...]
/external/v8/src/
H A Dapi.h230 const v8::Persistent<T>& persistent) {
232 reinterpret_cast<v8::internal::Object**>(persistent.val_));
237 v8::Persistent<T>* persistent) {
238 return OpenPersistent(*persistent);
229 OpenPersistent( const v8::Persistent<T>& persistent) argument
236 OpenPersistent( v8::Persistent<T>* persistent) argument

Completed in 956 milliseconds

123