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

/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/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);
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...]
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/chromium/base/
H A Dmessage_pump_libevent.h110 bool persistent,
H A Dmessage_pump_libevent.cc134 bool persistent,
143 int event_mask = persistent ? EV_PERSIST : 0;
188 controller->Init(evt.release(), persistent);
133 WatchFileDescriptor(int fd, bool persistent, Mode mode, FileDescriptorWatcher *controller, Watcher *delegate) argument
H A Dmessage_loop.cc719 bool persistent,
725 persistent,
718 WatchFileDescriptor(int fd, bool persistent, Mode mode, FileDescriptorWatcher *controller, Watcher *delegate) argument
H A Dmessage_loop.h629 bool persistent,
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p_invitation.c162 int persistent; local
207 persistent = *msg.invitation_flags & P2P_INVITATION_FLAGS_TYPE;
211 * the request was for a persistent group if the attribute is
216 persistent = 1;
232 &go, group_bssid, &op_freq, persistent);
543 "P2P: Request to invite peer " MACSTR " role=%d persistent=%d "
/external/wpa_supplicant_8/src/p2p/
H A Dp2p_invitation.c162 int persistent; local
207 persistent = *msg.invitation_flags & P2P_INVITATION_FLAGS_TYPE;
211 * the request was for a persistent group if the attribute is
216 persistent = 1;
232 &go, group_bssid, &op_freq, persistent);
543 "P2P: Request to invite peer " MACSTR " role=%d persistent=%d "
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p_invitation.c162 int persistent; local
207 persistent = *msg.invitation_flags & P2P_INVITATION_FLAGS_TYPE;
211 * the request was for a persistent group if the attribute is
216 persistent = 1;
232 &go, group_bssid, &op_freq, persistent);
543 "P2P: Request to invite peer " MACSTR " role=%d persistent=%d "
/external/kernel-headers/original/linux/
H A Dcdrom.h756 __u8 persistent : 1; member in struct:mrw_feature_desc
760 __u8 persistent : 1; member in struct:mrw_feature_desc
783 __u8 persistent : 1; member in struct:rwrt_feature_desc
787 __u8 persistent : 1; member in struct:rwrt_feature_desc
/external/kernel-headers/original/linux/raid/
H A Dmd_k.h128 int persistent; member in struct:mddev_s
/external/wpa_supplicant_8/wpa_supplicant/
H A Dp2p_supplicant.c418 "group is persistent - BSS " MACSTR " not found",
426 "group is persistent - BSS " MACSTR
438 wpa_printf(MSG_DEBUG, "P2P: Checking whether group is persistent: "
463 wpa_printf(MSG_DEBUG, "P2P: Storing credentials for a persistent "
474 wpa_printf(MSG_DEBUG, "P2P: Update existing persistent group "
482 wpa_printf(MSG_DEBUG, "P2P: Create a new persistent group "
493 * relevant flags in s to designate it as a persistent group.
618 int persistent; local
649 persistent = 0;
654 persistent
4581 int persistent; local
4645 int persistent; local
[all...]
/external/chromium/third_party/libevent/test/
H A Dregress_http.c409 http_connection_test(int persistent) argument
417 persistent ? "(persistent)" : "");
459 * if our connections are not supposed to be persistent; request
462 if (!persistent)
897 /* launch a new request on the persistent connection in 6 seconds */
1463 http_connection_test(0 /* not-persistent */);
1464 http_connection_test(1 /* persistent */);
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new_handlers_p2p.c57 * Convenience function to create and return an invalid persistent group error.
63 "There is no such persistent group in "
304 if (!os_strcmp(entry.key, "persistent") &&
323 * A persistent group Object Path is defined meaning we want
324 * to re-invoke a persistent group.
344 /* Get the SSID structure from the persistent group id */
352 "Failed to reinvoke a persistent group");
454 } else if (!os_strcmp(entry.key, "persistent") &&
570 int persistent = 0; local
592 persistent
[all...]
/external/mksh/src/
H A DBuild.sh1492 fd='if to use persistent history'
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 455 milliseconds