Searched refs:persistent (Results 1 - 25 of 99) sorted by relevance

1234

/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/jmdns/src/javax/jmdns/
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...]
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
/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/tensorflow/tensorflow/python/eager/
H A Dtape.py36 def push_new_tape(persistent=False):
38 tape = pywrap_tensorflow.TFE_Py_TapeSetNew(persistent)
H A Dpywrap_tfe.h100 // Creates a new tape and adds it to the active set. `persistent` must be a
102 PyObject* TFE_Py_TapeSetNew(PyObject* persistent);
/external/v8/include/
H A Dv8-util.h80 * a std:map backing map from StdMapTraits and holds non-weak persistent
313 static PersistentContainerValue ClearAndLeak(Global<V>* persistent) { argument
314 V* v = persistent->val_;
315 persistent->val_ = 0;
319 static PersistentContainerValue Leak(Global<V>* persistent) { argument
320 return reinterpret_cast<PersistentContainerValue>(persistent->val_);
379 Global<V> persistent(this->isolate(), value);
380 return SetUnique(key, &persistent);
394 Global<V> SetUnique(const K& key, Global<V>* persistent) { argument
396 Local<V> value(Local<V>::New(this->isolate(), *persistent));
461 SetUnique(const K& key, Global<V>* persistent) argument
593 Append(Global<V> persistent) argument
639 ClearAndLeak(Global<V>* persistent) argument
[all...]
/external/libbrillo/brillo/message_loops/
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 Dglib_message_loop.h33 bool persistent,
70 bool persistent; member in struct:brillo::GlibMessageLoop::ScheduledTask
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 Dfake_message_loop.h46 bool persistent,
67 bool persistent; member in struct:brillo::FakeMessageLoop::ScheduledTask
H A Dbase_message_loop.cc108 bool persistent,
131 from_here, this, task_id, fd, base_mode, persistent, task));
138 << (persistent ? " persistently" : " just once")
315 bool persistent,
318 fd_(fd), base_mode_(base_mode), persistent_(persistent), closure_(task),
398 // In the persistent case we just run the callback. If this callback cancels
104 WatchFileDescriptor( const tracked_objects::Location& from_here, int fd, WatchMode mode, bool persistent, const Closure &task) argument
310 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
H A Dbase_message_loop.h49 bool persistent,
102 bool persistent,
H A Dmock_message_loop.h69 bool persistent,
/external/tensorflow/tensorflow/contrib/lite/toco/
H A Dallocate_transient_arrays.cc34 // If true, the array is persistent state (as in a RNN). In that case,
38 bool persistent = false; member in struct:toco::__anon26035::ArrayLifespan
48 return !lifespan.persistent && lifespan.first_op == op_index;
52 return !lifespan.persistent && lifespan.last_op == op_index;
62 if (!lifespan.persistent) {
81 lifespan.persistent = true;
236 // Allocate persistent arrays (like RNN states). For them, 'transient'
241 if (it != array_lifespans.end() && it->second.persistent) {
278 // First, compute the size of persistent arrays.
284 if (it != array_lifespans.end() && it->second.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
H A Ddrd_suppression.h22 const Bool persistent);
/external/jmdns/src/javax/jmdns/impl/
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 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);
/external/honggfuzz/
H A Dsubproc.c129 if (!run->global->persistent) {
240 if (run->global->persistent) {
277 if (run->global->persistent) {
301 if (run->global->persistent) {
303 LOG_I("Persistent mode: Launched new persistent PID: %d", (int)run->pid);
324 if (run->global->persistent && !subproc_persistentSendFile(run)) {
325 LOG_W("Could not send file contents to the persistent process");
/external/honggfuzz/linux/
H A Darch.c62 if (run->global->persistent && run->linux.attachedPid == run->pid) {
159 if (!run->global->exe.fuzzStdin && !run->global->persistent &&
162 } else if (!run->global->exe.fuzzStdin && !run->global->persistent &&
176 run->global->persistent ? "PERSISTENT_MODE" : run->fileName);
201 if (run->global->persistent) {
308 if (run->global->persistent && pid == run->persistentPid &&
/external/libchrome/base/message_loop/
H A Dmessage_pump_libevent.h108 bool persistent,
/external/honggfuzz/posix/
H A Darch.c189 if (run->global->persistent) {
208 int flags = run->global->persistent ? WNOHANG : 0;
226 if (run->global->persistent && ret == run->persistentPid &&

Completed in 454 milliseconds

1234