Home
last modified time | relevance | path

Searched refs:persistent (Results 1 – 25 of 152) sorted by relevance

1234567

/external/jmdns/src/javax/jmdns/
DServiceInfo.java253 …e, final int port, final int weight, final int priority, final boolean persistent, final String te… in create() argument
254 return new ServiceInfoImpl(type, name, "", port, weight, priority, persistent, text); in create()
278 …e, final int port, final int weight, final int priority, final boolean persistent, final String te… in create() argument
279 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, persistent, text); in create()
301 …e, final int port, final int weight, final int priority, final boolean persistent, final Map<Strin… in create() argument
302 return new ServiceInfoImpl(type, name, "", port, weight, priority, persistent, props); in create()
326 …e, final int port, final int weight, final int priority, final boolean persistent, final Map<Strin… in create() argument
327 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, persistent, props); in create()
349 …e, final int port, final int weight, final int priority, final boolean persistent, final byte[] te… in create() argument
350 return new ServiceInfoImpl(type, name, "", port, weight, priority, persistent, text); in create()
[all …]
DJmDNS.java215 public abstract ServiceInfo getServiceInfo(String type, String name, boolean persistent); in getServiceInfo() argument
232 …public abstract ServiceInfo getServiceInfo(String type, String name, boolean persistent, long time… in getServiceInfo() argument
258 public abstract void requestServiceInfo(String type, String name, boolean persistent); in requestServiceInfo() argument
284 …public abstract void requestServiceInfo(String type, String name, boolean persistent, long timeout… in requestServiceInfo() argument
DJmmDNS.java191 public abstract ServiceInfo[] getServiceInfos(String type, String name, boolean persistent); in getServiceInfos() argument
209 …public abstract ServiceInfo[] getServiceInfos(String type, String name, boolean persistent, long t… in getServiceInfos() argument
233 public abstract void requestServiceInfo(String type, String name, boolean persistent); in requestServiceInfo() argument
261 …public abstract void requestServiceInfo(String type, String name, boolean persistent, long timeout… in requestServiceInfo() argument
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
Dp2p_group_add.py50 global persistent
64 def __init__(self,interface_name,wpas_dbus_interface,persistent,frequency, argument
69 self.persistent = persistent
124 self.P2PDictionary = {'persistent':self.persistent}
159 persistent = False variable
187 persistent = False variable
189 persistent = True variable
214 persistent,frequency,persistent_group_object)
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowPreference.java28 protected boolean persistent = false; field in ShadowPreference
78 return persistent; in shouldPersist()
83 return persistent; in isPersistent()
87 public void setPersistent(boolean persistent) { in setPersistent() argument
88 this.persistent = persistent; in setPersistent()
93 return persistent ? persistedInt : defaultReturnValue; in getPersistedInt()
99 return persistent; in persistInt()
/external/v8/include/
Dv8-util.h313 static PersistentContainerValue ClearAndLeak(Global<V>* persistent) {
314 V* v = persistent->val_;
315 persistent->val_ = 0;
319 static PersistentContainerValue Leak(Global<V>* persistent) {
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) {
396 Local<V> value(Local<V>::New(this->isolate(), *persistent));
397 persistent->template SetWeak<typename Traits::WeakCallbackDataType>(
[all …]
/external/jmdns/src/javax/jmdns/impl/
DDNSRecord.java206 public ServiceInfo getServiceInfo(boolean persistent) { in getServiceInfo() argument
208 ServiceInfoImpl info = (ServiceInfoImpl) super.getServiceInfo(persistent); in getServiceInfo()
251 public ServiceInfo getServiceInfo(boolean persistent) { in getServiceInfo() argument
253 ServiceInfoImpl info = (ServiceInfoImpl) super.getServiceInfo(persistent); in getServiceInfo()
393 public ServiceInfo getServiceInfo(boolean persistent) { in getServiceInfo() argument
394 …nfoImpl info = new ServiceInfoImpl(this.getQualifiedNameMap(), 0, 0, 0, persistent, (byte[]) null); in getServiceInfo()
493 public ServiceInfo getServiceInfo(boolean persistent) { in getServiceInfo() argument
497 return new ServiceInfoImpl(map, 0, 0, 0, persistent, (byte[]) null); in getServiceInfo()
499 … return new ServiceInfoImpl(this.getQualifiedNameMap(), 0, 0, 0, persistent, (byte[]) null); in getServiceInfo()
502 … return new ServiceInfoImpl(this.getQualifiedNameMap(), 0, 0, 0, persistent, (byte[]) null); in getServiceInfo()
[all …]
DJmmDNSImpl.java189 public ServiceInfo[] getServiceInfos(String type, String name, boolean persistent) { in getServiceInfos() argument
190 return this.getServiceInfos(type, name, persistent, DNSConstants.SERVICE_INFO_TIMEOUT); in getServiceInfos()
198 …[] getServiceInfos(final String type, final String name, final boolean persistent, final long time… in getServiceInfos() argument
209 result.add(mDNS.getServiceInfo(type, name, persistent, timeout)); in getServiceInfos()
236 public void requestServiceInfo(String type, String name, boolean persistent) { in requestServiceInfo() argument
237 this.requestServiceInfo(type, name, persistent, DNSConstants.SERVICE_INFO_TIMEOUT); in requestServiceInfo()
254 …public void requestServiceInfo(final String type, final String name, final boolean persistent, fin… in requestServiceInfo() argument
263 mDNS.requestServiceInfo(type, name, persistent, timeout); in requestServiceInfo()
DServiceInfoImpl.java127 …String name, String subtype, int port, int weight, int priority, boolean persistent, String text) { in ServiceInfoImpl() argument
128 …pl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, (byte[]) null); in ServiceInfoImpl()
150 …ring name, String subtype, int port, int weight, int priority, boolean persistent, Map<String, ?> … in ServiceInfoImpl() argument
151 …l.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, textFromPropert… in ServiceInfoImpl()
165 …String name, String subtype, int port, int weight, int priority, boolean persistent, byte text[]) { in ServiceInfoImpl() argument
166 …iceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, text); in ServiceInfoImpl()
169 … String> qualifiedNameMap, int port, int weight, int priority, boolean persistent, Map<String, ?> … in ServiceInfoImpl() argument
170 this(qualifiedNameMap, port, weight, priority, persistent, textFromProperties(props)); in ServiceInfoImpl()
173 …s, String> qualifiedNameMap, int port, int weight, int priority, boolean persistent, String text) { in ServiceInfoImpl() argument
174 this(qualifiedNameMap, port, weight, priority, persistent, (byte[]) null); in ServiceInfoImpl()
[all …]
DJmDNSImpl.java726 public ServiceInfo getServiceInfo(String type, String name, boolean persistent) { in getServiceInfo() argument
727 return this.getServiceInfo(type, name, persistent, DNSConstants.SERVICE_INFO_TIMEOUT); in getServiceInfo()
734 public ServiceInfo getServiceInfo(String type, String name, boolean persistent, long timeout) { in getServiceInfo() argument
735 final ServiceInfoImpl info = this.resolveServiceInfo(type, name, "", persistent); in getServiceInfo()
740 … ServiceInfoImpl resolveServiceInfo(String type, String name, String subtype, boolean persistent) { in resolveServiceInfo() argument
749 final ServiceInfoImpl info = this.getServiceInfoFromCache(type, name, subtype, persistent); in resolveServiceInfo()
756 …iceInfoImpl getServiceInfoFromCache(String type, String name, String subtype, boolean persistent) { in getServiceInfoFromCache() argument
758 …ServiceInfoImpl info = new ServiceInfoImpl(type, name, subtype, 0, 0, 0, persistent, (byte[]) null… in getServiceInfoFromCache()
761 …rviceInfoImpl cachedInfo = (ServiceInfoImpl) ((DNSRecord) pointerEntry).getServiceInfo(persistent); in getServiceInfoFromCache()
770 … ServiceInfo cachedServiceEntryInfo = ((DNSRecord) serviceEntry).getServiceInfo(persistent); in getServiceInfoFromCache()
[all …]
/external/libbrillo/brillo/message_loops/
Dfake_message_loop.cc40 bool persistent, in WatchFileDescriptor() argument
45 tasks_.emplace(current_id, ScheduledTask{from_here, persistent, task}); in WatchFileDescriptor()
77 << (scheduled_task_ref->second.persistent ? in RunOnce()
80 if (scheduled_task_ref->second.persistent) { in RunOnce()
135 << "Pending " << (task.second.persistent ? "persistent " : "") in PendingTasks()
Dglib_message_loop.cc57 bool persistent, in WatchFileDescriptor() argument
96 this, from_here, task_id, 0, persistent, std::move(task)}; in WatchFileDescriptor()
112 << (persistent ? " persistently" : " just once") in WatchFileDescriptor()
180 if (!scheduled_task->persistent) { in OnWatchedFdReady()
187 return scheduled_task->persistent; in OnWatchedFdReady()
Dmessage_loop.h86 bool persistent,
92 bool persistent, in WatchFileDescriptor() argument
95 tracked_objects::Location(), fd, mode, persistent, task); in WatchFileDescriptor()
Dbase_message_loop.cc108 bool persistent, in WatchFileDescriptor() argument
131 from_here, this, task_id, fd, base_mode, persistent, task)); in WatchFileDescriptor()
138 << (persistent ? " persistently" : " just once") in WatchFileDescriptor()
315 bool persistent, in IOTask() argument
318 fd_(fd), base_mode_(base_mode), persistent_(persistent), closure_(task) {} in IOTask()
Dglib_message_loop.h33 bool persistent,
70 bool persistent; member
Dfake_message_loop.h46 bool persistent,
67 bool persistent; member
/external/vulkan-validation-layers/build-android/
Dupdate_external_sources_android.sh40 git clone persistent-https://android.git.corp.google.com/platform/external/shaderc/glslang .
56 git clone persistent-https://android.git.corp.google.com/platform/external/shaderc/spirv-tools .
72 … git clone persistent-https://android.git.corp.google.com/platform/external/shaderc/spirv-headers .
88 git clone persistent-https://android.git.corp.google.com/platform/external/shaderc/shaderc
/external/chromium-trace/catapult/systrace/systrace/test_data/
Dprofile-chrome_systrace_perf_chrome_data1persistent", "tid": 13885, "sf": 24}, {"name": "cycles:HG", "weight": 1131898, "ts": 196493638935.…
/external/valgrind/drd/
Ddrd_suppression.c120 const Bool persistent) in DRD_()
126 a1, a2 - a1, persistent ? "persistent" : "non-persistent"); in DRD_()
129 if (persistent) in DRD_()
/external/curl/tests/data/
Dtest1466 persistent connection
23 persistent FTP with different paths
Dtest1837 persistent connection
28 HTTP GET two URLs over a single proxy with persistent connection
/external/python/cpython2/Doc/library/
Dshelve.rst14 A "shelf" is a persistent, dictionary-like object. The difference with "dbm"
23 Open a persistent dictionary. The filename specified is the base filename for
36 persistent-dictionary entry is modified. By default modified objects are
41 the persistent dictionary, but, if many entries are accessed, it can consume
48 that the persistent data is flushed to disk.
58 persistent storage.
68 set to :const:`True`. Also empty the cache and synchronize the persistent
74 Synchronize and close the persistent *dict* object. Operations on a closed
/external/kernel-headers/original/uapi/linux/
Dcdrom.h760 __u8 persistent : 1; member
764 __u8 persistent : 1; member
787 __u8 persistent : 1; member
791 __u8 persistent : 1; member
917 __u8 persistent:1; member
921 __u8 persistent:1; member
/external/wpa_supplicant_8/wpa_supplicant/
DREADME-P2P152 [persistent|persistent=<network id>] [join|auth]
166 from local display, keypad=PIN entered from peer display). "persistent"
167 parameter can be used to request a persistent group to be formed. The
168 "persistent=<network id>" alternative can be used to pre-populate
169 SSID/passphrase configuration based on a previously used persistent
212 p2p_connect 02:0a:f5:85:11:00 12345670 p2ps persistent join
215 p2p_connect 02:0a:f5:85:11:00 45629034 keypad persistent
264 p2p_group_add [persistent|persistent=<network id>] [freq=<freq in MHz>]
269 GO. Optional persistent=<network id> can be used to specify restart of
270 a persistent group. Optional freq=<freq in MHz> can be used to force
[all …]
/external/toolchain-utils/dejagnu/
Dchromeos.exp.in10 verbose -log "Opening persistent connection ..." 1
24 verbose -log "Closing persistent connection ..." 1
32 # Upload a file to the board. Uses scp over persistent SSH connection.
52 # Download a file to the host machine. Uses scp over persistent SSH connection.
90 # persistent SSH connection and run a command in modified environment.

1234567