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

12

/external/skia/experimental/SkV8Example/
H A DPath2D.h30 v8::Persistent<v8::Object>& persistent() { function in class:Path2D
/external/jetty/src/java/org/eclipse/jetty/http/
H A DParser.java45 void setPersistent(boolean persistent); argument
H A DGenerator.java91 void setPersistent(boolean persistent); argument
H A DAbstractGenerator.java273 public void setPersistent(boolean persistent) argument
275 _persistent=persistent;
H A DHttpParser.java199 public void setPersistent(boolean persistent) argument
201 _persistent = persistent;
/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...]
H A DJmDNSImpl.java726 public ServiceInfo getServiceInfo(String type, String name, boolean persistent) { argument
727 return this.getServiceInfo(type, name, persistent, DNSConstants.SERVICE_INFO_TIMEOUT);
734 public ServiceInfo getServiceInfo(String type, String name, boolean persistent, long timeout) { argument
735 final ServiceInfoImpl info = this.resolveServiceInfo(type, name, "", persistent);
740 ServiceInfoImpl resolveServiceInfo(String type, String name, String subtype, boolean persistent) { argument
749 final ServiceInfoImpl info = this.getServiceInfoFromCache(type, name, subtype, persistent);
756 ServiceInfoImpl getServiceInfoFromCache(String type, String name, String subtype, boolean persistent) { argument
758 ServiceInfoImpl info = new ServiceInfoImpl(type, name, subtype, 0, 0, 0, persistent, (byte[]) null);
761 ServiceInfoImpl cachedInfo = (ServiceInfoImpl) ((DNSRecord) pointerEntry).getServiceInfo(persistent);
770 ServiceInfo cachedServiceEntryInfo = ((DNSRecord) serviceEntry).getServiceInfo(persistent);
846 requestServiceInfo(String type, String name, boolean persistent) argument
862 requestServiceInfo(String type, String name, boolean persistent, long timeout) argument
[all...]
/external/lldb/source/Target/
H A DThreadPlanCallFunction.cpp293 const bool persistent = false; local
294 m_return_valobj_sp = abi->GetReturnValueObject (m_thread, m_return_type, persistent);
/external/robolectric/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.c184 int persistent; local
224 persistent = *msg.invitation_flags & P2P_INVITATION_FLAGS_TYPE;
228 * the request was for a persistent group if the attribute is
232 persistent = 1;
257 &go, group_bssid, &op_freq, persistent, &intersection,
640 p2p_dbg(p2p, "Request to invite peer " MACSTR " role=%d persistent=%d "
/external/wpa_supplicant_8/src/p2p/
H A Dp2p_invitation.c184 int persistent; local
224 persistent = *msg.invitation_flags & P2P_INVITATION_FLAGS_TYPE;
228 * the request was for a persistent group if the attribute is
232 persistent = 1;
257 &go, group_bssid, &op_freq, persistent, &intersection,
640 p2p_dbg(p2p, "Request to invite peer " MACSTR " role=%d persistent=%d "
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p_invitation.c184 int persistent; local
224 persistent = *msg.invitation_flags & P2P_INVITATION_FLAGS_TYPE;
228 * the request was for a persistent group if the attribute is
232 persistent = 1;
257 &go, group_bssid, &op_freq, persistent, &intersection,
640 p2p_dbg(p2p, "Request to invite peer " MACSTR " role=%d persistent=%d "
/external/v8/include/
H A Dv8-util.h76 * a std:map backing map from StdMapTraits and holds non-weak persistent
176 UniquePersistent<V> persistent(isolate_, value);
177 return SetUnique(key, &persistent);
284 UniquePersistent<V> SetUnique(const K& key, UniquePersistent<V>* persistent) { argument
286 Local<V> value(Local<V>::New(isolate_, *persistent));
287 persistent->template SetWeak<typename Traits::WeakCallbackDataType>(
291 Traits::Set(&impl_, key, ClearAndLeak(persistent));
322 UniquePersistent<V>* persistent) {
323 V* v = persistent->val_;
324 persistent
321 ClearAndLeak( UniquePersistent<V>* persistent) argument
328 Leak( UniquePersistent<V>* persistent) argument
424 Append(UniquePersistent<V> persistent) argument
470 ClearAndLeak( UniquePersistent<V>* persistent) argument
[all...]
/external/v8/src/
H A Dapi.h276 const v8::Persistent<T>& persistent) {
278 reinterpret_cast<v8::internal::Object**>(persistent.val_));
283 v8::Persistent<T>* persistent) {
284 return OpenPersistent(*persistent);
275 OpenPersistent( const v8::Persistent<T>& persistent) argument
282 OpenPersistent( v8::Persistent<T>* persistent) argument
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new_handlers_p2p.c58 * Convenience function to create and return an invalid persistent group error.
65 "There is no such persistent group in this P2P device.");
314 if (os_strcmp(entry.key, "persistent") == 0 &&
338 * A persistent group Object Path is defined meaning we want
339 * to re-invoke a persistent group.
361 /* Get the SSID structure from the persistent group id */
370 "Failed to reinvoke a persistent group");
530 } else if (os_strcmp(entry.key, "persistent") == 0 &&
668 int persistent = 0; local
691 persistent
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dcdrom.h760 __u8 persistent : 1; member in struct:mrw_feature_desc
764 __u8 persistent : 1; member in struct:mrw_feature_desc
787 __u8 persistent : 1; member in struct:rwrt_feature_desc
791 __u8 persistent : 1; member in struct:rwrt_feature_desc
917 __u8 persistent:1; member in struct:rm_feature_desc
921 __u8 persistent:1; member in struct:rm_feature_desc
/external/wpa_supplicant_8/wpa_supplicant/
H A Dctrl_iface.c2744 "SELECT_NETWORK with persistent P2P group");
2787 "ENABLE_NETWORK with persistent P2P group");
2824 "DISABLE_NETWORK with persistent P2P "
4807 * [persistent|persistent=<network id>]
4819 persistent_group = os_strstr(pos, " persistent") != NULL;
4820 pos2 = os_strstr(pos, " persistent=");
4828 "SSID id=%d for persistent P2P group (GO)",
5435 "for persistent P2P group",
5498 if (os_strncmp(cmd, "persistent
5527 int freq = 0, persistent = 0, group_id = -1; local
[all...]
H A Dp2p_supplicant.c61 * WPS provisioning step or after the re-invocation of a persistent group on a
80 * re-invocation of a persistent group on the GO when the client is expected
572 /* Find a persistent group where we are the GO */
611 wpa_printf(MSG_DEBUG, "P2P: GO(iface)=%p persistent(ssid)=%p",
981 "group is persistent - BSS " MACSTR " not found",
992 "group is persistent - BSS " MACSTR
1004 wpa_printf(MSG_DEBUG, "P2P: Checking whether group is persistent: "
1029 wpa_printf(MSG_DEBUG, "P2P: Storing credentials for a persistent "
1040 wpa_printf(MSG_DEBUG, "P2P: Update existing persistent group "
1048 wpa_printf(MSG_DEBUG, "P2P: Create a new persistent grou
1190 wpas_p2p_group_started(struct wpa_supplicant *wpa_s, int go, struct wpa_ssid *ssid, int freq, const u8 *psk, const char *passphrase, const u8 *go_dev_addr, int persistent, const char *extra) argument
1240 int persistent; local
1587 struct wpa_ssid *persistent; local
6185 int persistent; local
6256 int persistent; local
7210 struct wpa_ssid *persistent; local
7462 struct wpa_ssid *persistent; local
7666 int res, persistent; local
[all...]

Completed in 6354 milliseconds

12