HomeSort by relevance Sort by last modified time
    Searched refs:persistent (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
StreamPort.java 50 protected synchronized void assignFrame(Frame frame, boolean persistent) {
52 checkFrameType(frame, persistent);
54 if (persistent) {
64 mPersistent = persistent;
  /external/jmdns/src/javax/jmdns/
ServiceInfo.java 247 * @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) {
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) {
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) {
302 return new ServiceInfoImpl(type, name, "", port, weight, priority, persistent, props);
320 * @param persistent
    [all...]
JmDNS.java 211 * @param persistent
215 public abstract ServiceInfo getServiceInfo(String type, String name, boolean persistent);
228 * @param persistent
232 public abstract ServiceInfo getServiceInfo(String type, String name, boolean persistent, long timeout);
255 * @param persistent
258 public abstract void requestServiceInfo(String type, String name, boolean persistent);
279 * @param persistent
284 public abstract void requestServiceInfo(String type, String name, boolean persistent, long timeout);
JmmDNS.java 186 * @param persistent
191 public abstract ServiceInfo[] getServiceInfos(String type, String name, boolean persistent);
204 * @param persistent
209 public abstract ServiceInfo[] getServiceInfos(String type, String name, boolean persistent, long timeout);
229 * @param persistent
233 public abstract void requestServiceInfo(String type, String name, boolean persistent);
255 * @param persistent
261 public abstract void requestServiceInfo(String type, String name, boolean persistent, long timeout);
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListFilterController.java 60 * @param persistent True when the given filter should be saved soon. False when the filter
64 public abstract void setContactListFilter(ContactListFilter filter, boolean persistent);
114 public void setContactListFilter(ContactListFilter filter, boolean persistent) {
115 setContactListFilter(filter, persistent, true);
118 private void setContactListFilter(ContactListFilter filter, boolean persistent,
122 if (persistent) {
  /external/jmdns/src/javax/jmdns/impl/
DNSRecord.java 206 public ServiceInfo getServiceInfo(boolean persistent) {
208 ServiceInfoImpl info = (ServiceInfoImpl) super.getServiceInfo(persistent);
251 public ServiceInfo getServiceInfo(boolean persistent) {
253 ServiceInfoImpl info = (ServiceInfoImpl) super.getServiceInfo(persistent);
393 public ServiceInfo getServiceInfo(boolean persistent) {
394 ServiceInfoImpl info = new ServiceInfoImpl(this.getQualifiedNameMap(), 0, 0, 0, persistent, (byte[]) null);
493 public ServiceInfo getServiceInfo(boolean persistent) {
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, (byte[]) null)
    [all...]
JmmDNSImpl.java 189 public ServiceInfo[] getServiceInfos(String type, String name, boolean persistent) {
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) {
209 result.add(mDNS.getServiceInfo(type, name, persistent, timeout));
236 public void requestServiceInfo(String type, String name, boolean persistent) {
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) {
263 mDNS.requestServiceInfo(type, name, persistent, timeout);
JmDNSImpl.java 726 public ServiceInfo getServiceInfo(String type, String name, boolean persistent) {
727 return this.getServiceInfo(type, name, persistent, DNSConstants.SERVICE_INFO_TIMEOUT);
734 public ServiceInfo getServiceInfo(String type, String name, boolean persistent, long timeout) {
735 final ServiceInfoImpl info = this.resolveServiceInfo(type, name, "", persistent);
740 ServiceInfoImpl resolveServiceInfo(String type, String name, String subtype, boolean persistent) {
749 final ServiceInfoImpl info = this.getServiceInfoFromCache(type, name, subtype, persistent);
756 ServiceInfoImpl getServiceInfoFromCache(String type, String name, String subtype, boolean persistent) {
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);
    [all...]
ServiceInfoImpl.java 123 * @param persistent
127 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, String text) {
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) {
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[]) {
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, Map<String, ?> props)
    [all...]
  /external/chromium/base/
message_pump_libevent.h 110 bool persistent,
message_pump_libevent.cc 134 bool persistent,
143 int event_mask = persistent ? EV_PERSIST : 0;
188 controller->Init(evt.release(), persistent);
  /frameworks/base/services/java/com/android/server/am/
AppErrorDialog.java 77 if (app.persistent) {
  /sdk/eclipse/scripts/
_mk_icons.sh 26 icon P blue persistent
  /bionic/libc/kernel/common/linux/
cdrom.h 604 __u8 persistent : 1; member in struct:mrw_feature_desc
609 __u8 persistent : 1; member in struct:mrw_feature_desc
635 __u8 persistent : 1; member in struct:rwrt_feature_desc
640 __u8 persistent : 1; member in struct:rwrt_feature_desc
  /development/ndk/platforms/android-3/include/linux/
cdrom.h 568 __u8 persistent : 1; member in struct:mrw_feature_desc
572 __u8 persistent : 1; member in struct:mrw_feature_desc
594 __u8 persistent : 1; member in struct:rwrt_feature_desc
598 __u8 persistent : 1; member in struct:rwrt_feature_desc
  /development/ndk/platforms/android-3/include/linux/raid/
md_k.h 86 int persistent; member in struct:mddev_s
  /external/wpa_supplicant_8/src/p2p/
p2p_invitation.c 107 int persistent; local
151 persistent = *msg.invitation_flags & P2P_INVITATION_FLAGS_TYPE;
155 * the request was for a persistent group if the attribute is
160 persistent = 1;
176 &go, group_bssid, &op_freq, persistent);
414 "P2P: Request to invite peer " MACSTR " role=%d persistent=%d "
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/
cdrom.h 568 __u8 persistent : 1; member in struct:mrw_feature_desc
572 __u8 persistent : 1; member in struct:mrw_feature_desc
594 __u8 persistent : 1; member in struct:rwrt_feature_desc
598 __u8 persistent : 1; member in struct:rwrt_feature_desc
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/raid/
md_k.h 86 int persistent; member in struct:mddev_s
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
cdrom.h 756 __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
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cdrom.h 756 __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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cdrom.h 756 __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
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/
cdrom.h 568 __u8 persistent : 1; member in struct:mrw_feature_desc
572 __u8 persistent : 1; member in struct:mrw_feature_desc
594 __u8 persistent : 1; member in struct:rwrt_feature_desc
598 __u8 persistent : 1; member in struct:rwrt_feature_desc
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/raid/
md_k.h 86 int persistent; member in struct:mddev_s
  /prebuilts/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
cdrom.h 568 __u8 persistent : 1; member in struct:mrw_feature_desc
572 __u8 persistent : 1; member in struct:mrw_feature_desc
594 __u8 persistent : 1; member in struct:rwrt_feature_desc
598 __u8 persistent : 1; member in struct:rwrt_feature_desc

Completed in 1133 milliseconds

1 2 3 4 5