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

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/content/public/common/
window_container_type.cc 15 const char kPersistent[] = "persistent";
22 bool persistent = false; local
30 persistent = true;
34 if (persistent)
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptWrappable.h 50 * ScriptWrappable acts much like a v8::Persistent<> in that it keeps a
52 * object or an actual v8 persistent (or is empty).
58 * - if odd: a pointer to v8::Persistent<v8::Object> + 1.
72 * - setWrapper: install a v8::Persistent (or empty)
74 * remove v8::Persistent and install a TypeInfo of the previous value.
99 v8::Persistent<v8::Object> persistent(isolate, wrapper);
100 configuration.configureWrapper(&persistent);
101 persistent.SetWeak(this, &setWeakCallback);
102 m_wrapperOrTypeInfo = reinterpret_cast<uintptr_t>(persistent.ClearAndLeak()) | 1
108 v8::Persistent<v8::Object> persistent; local
119 v8::Persistent<v8::Object> persistent; local
135 v8::Persistent<v8::Object> persistent; local
156 v8::Persistent<v8::Object> persistent; local
176 v8::Persistent<v8::Object> persistent; local
240 v8::Persistent<v8::Object> persistent; local
255 v8::Persistent<v8::Object> persistent; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/bluetooth_low_energy/
bluetooth_low_energy_connection.cc 21 bool persistent,
25 persistent_(persistent),
bluetooth_low_energy_notify_session.cc 21 bool persistent,
25 persistent_(persistent),
bluetooth_low_energy_connection.h 19 bool persistent,
40 // True, if this resource should be persistent.
bluetooth_low_energy_notify_session.h 21 bool persistent,
42 // True, if this resource should be persistent across suspends.
  /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/wpa_supplicant_8/wpa_supplicant/examples/p2p/
p2p_group_add.py 15 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 = Fals
    [all...]
  /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);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPreference.java 28 protected boolean persistent = false; field in class:ShadowPreference
78 return persistent;
83 return persistent;
87 public void setPersistent(boolean persistent) {
88 this.persistent = persistent;
93 return persistent ? persistedInt : defaultReturnValue;
99 return persistent;
  /external/smack/src/org/jivesoftware/smackx/muc/
RoomInfo.java 75 * Persistent rooms are saved to the database to make sure that rooms configurations can be
78 private boolean persistent; field in class:RoomInfo
88 this.persistent = info.containsFeature("muc_persistent");
187 return persistent;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactListFilterController.java 59 * @param persistent True when the given filter should be saved soon. False when the filter
63 public abstract void setContactListFilter(ContactListFilter filter, boolean persistent);
113 public void setContactListFilter(ContactListFilter filter, boolean persistent) {
114 setContactListFilter(filter, persistent, true);
117 private void setContactListFilter(ContactListFilter filter, boolean persistent,
121 if (persistent) {
  /external/chromium_org/v8/include/
v8-util.h 13 * Support for Persistent containers.
76 * a std:map backing map from StdMapTraits and holds non-weak persistent
164 const Persistent<Object>& parent) {
176 UniquePersistent<V> persistent(isolate_, value);
177 return SetUnique(key, &persistent);
284 UniquePersistent<V> SetUnique(const K& key, UniquePersistent<V>* persistent) {
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) {
    [all...]
  /external/chromium_org/extensions/browser/api/socket/
tcp_socket.h 111 bool persistent() const { return persistent_; } function in class:extensions::ResumableTCPSocket
112 void set_persistent(bool persistent) { persistent_ = persistent; }
149 bool persistent() const { return persistent_; } function in class:extensions::ResumableTCPServerSocket
150 void set_persistent(bool persistent) { persistent_ = persistent; }
udp_socket.h 90 bool persistent() const { return persistent_; } function in class:extensions::ResumableUDPSocket
91 void set_persistent(bool persistent) { persistent_ = persistent; }
  /external/chromium_org/base/memory/
discardable_memory_mac.cc 89 bool persistent; variable
100 // When making a fresh allocation, it's impossible for |persistent| to
102 persistent = false;
104 // |persistent| will be reset to false below if appropriate, but when
106 persistent = true;
125 persistent = false;
127 return persistent;
  /external/chromium_org/chrome/browser/extensions/api/bluetooth_socket/
bluetooth_api_socket.h 97 bool persistent() const { return persistent_; } function in class:extensions::BluetoothApiSocket
98 void set_persistent(bool persistent) { persistent_ = persistent; }
  /external/chromium_org/chrome/browser/extensions/api/serial/
serial_connection.h 58 void set_persistent(bool persistent) { persistent_ = persistent; }
59 bool persistent() const { return persistent_; } function in class:extensions::SerialConnection
  /external/chromium_org/content/renderer/media/crypto/
proxy_decryptor.cc 28 // Special system code to signal a closed persistent session in a SessionError()
102 const char kPrefixedApiPersistentSessionHeader[] = "PERSISTENT|";
107 bool persistent = HasHeader( local
114 persistent || loadSession),
129 persistent ? media::MediaKeys::PERSISTENT_SESSION
260 "Do not close persistent sessions.");
289 void ProxyDecryptor::SetSessionId(bool persistent,
291 active_sessions_.insert(std::make_pair(web_session_id, persistent));
  /external/chromium_org/base/message_loop/
message_pump_io_ios.cc 76 bool persistent,
124 scoped_fd_source.release(), persistent);
134 if (persistent != controller->is_persistent_) {
135 NOTREACHED() << "persistent doesn't match";
202 // valid and the controller is persistent.
  /external/valgrind/main/drd/
drd_suppression.c 116 * 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.
  /external/chromium_org/ash/system/tray/
system_tray.h 171 bool persistent);
181 bool 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...]

Completed in 437 milliseconds

1 2 3 4 5 6 7 8 91011