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

12

/external/chromium_org/content/public/common/
H A Dwindow_container_type.cc15 const char kPersistent[] = "persistent";
22 bool persistent = false; local
30 persistent = true;
34 if (persistent)
/external/chromium_org/extensions/browser/api/bluetooth_low_energy/
H A Dbluetooth_low_energy_connection.cc23 bool persistent,
27 persistent_(persistent),
22 BluetoothLowEnergyConnection( bool persistent, const std::string& owner_extension_id, scoped_ptr<device::BluetoothGattConnection> connection) argument
H A Dbluetooth_low_energy_notify_session.cc23 bool persistent,
27 persistent_(persistent),
22 BluetoothLowEnergyNotifySession( bool persistent, const std::string& owner_extension_id, scoped_ptr<device::BluetoothGattNotifySession> session) argument
H A Dbluetooth_low_energy_api.cc161 bool persistent = false; // Not persistent by default. local
164 persistent = properties->persistent;
167 persistent,
600 bool persistent = false; // Not persistent by default. local
603 persistent = properties->persistent;
606 persistent,
[all...]
/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/chromium_org/base/memory/
H A Ddiscardable_memory_mac.cc85 bool persistent; variable
96 // When making a fresh allocation, it's impossible for |persistent| to
98 persistent = false;
100 // |persistent| will be reset to false below if appropriate, but when
102 persistent = true;
121 persistent = false;
123 return persistent;
/external/chromium_org/extensions/browser/api/socket/
H A Dudp_socket.h90 bool persistent() const { return persistent_; } function in class:extensions::ResumableUDPSocket
91 void set_persistent(bool persistent) { persistent_ = persistent; } argument
H A Dtcp_socket.h124 bool persistent() const { return persistent_; } function in class:extensions::ResumableTCPSocket
125 void set_persistent(bool persistent) { persistent_ = persistent; } argument
162 bool persistent() const { return persistent_; } function in class:extensions::ResumableTCPServerSocket
163 void set_persistent(bool persistent) { persistent_ = persistent; } argument
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptPromisePropertyBase.cpp83 const OwnPtr<ScopedPersistent<v8::Object> >& persistent = m_wrappers[i]; local
84 if (persistent->isEmpty()) {
91 v8::Local<v8::Object> wrapper = persistent->newLocal(m_isolate);
128 const OwnPtr<ScopedPersistent<v8::Object> >& persistent = m_wrappers[i]; local
129 if (persistent->isEmpty()) {
137 v8::Local<v8::Object> wrapper = persistent->newLocal(m_isolate);
H A DScriptWrappable.h133 v8::Persistent<v8::Object> persistent(isolate, wrapper);
134 wrapperTypeInfo->configureWrapper(&persistent);
135 persistent.SetWeak(this, &setWeakCallback);
136 m_wrapper = persistent.ClearAndLeak();
142 v8::Persistent<v8::Object> persistent; local
143 getPersistent(&persistent);
144 return v8::Local<v8::Object>::New(isolate, persistent);
149 v8::Persistent<v8::Object> persistent; local
150 getPersistent(&persistent);
151 return persistent
170 v8::Persistent<v8::Object> persistent; local
190 v8::Persistent<v8::Object> persistent; local
261 v8::Persistent<v8::Object> persistent; local
271 v8::Persistent<v8::Object> persistent; local
[all...]
/external/smack/src/org/jivesoftware/smackx/muc/
H A DRoomInfo.java78 private boolean persistent; field in class:RoomInfo
88 this.persistent = info.containsFeature("muc_persistent");
187 return persistent;
/external/valgrind/main/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/chromium_org/base/message_loop/
H A Dmessage_pump_io_ios.cc76 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.
74 WatchFileDescriptor( int fd, bool persistent, int mode, FileDescriptorWatcher *controller, Watcher *delegate) argument
H A Dmessage_pump_libevent.cc139 bool persistent,
151 int event_mask = persistent ? EV_PERSIST : 0;
138 WatchFileDescriptor(int fd, bool persistent, int mode, FileDescriptorWatcher *controller, Watcher *delegate) argument
/external/chromium_org/extensions/browser/api/bluetooth_socket/
H A Dbluetooth_api_socket.h97 bool persistent() const { return persistent_; } function in class:extensions::BluetoothApiSocket
98 void set_persistent(bool persistent) { persistent_ = persistent; } argument
/external/chromium_org/extensions/browser/api/serial/
H A Dserial_connection.h54 void set_persistent(bool persistent) { persistent_ = persistent; } argument
55 bool persistent() const { return persistent_; } function in class:extensions::SerialConnection
/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);
/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.c178 int persistent; local
218 persistent = *msg.invitation_flags & P2P_INVITATION_FLAGS_TYPE;
222 * the request was for a persistent group if the attribute is
226 persistent = 1;
247 &go, group_bssid, &op_freq, persistent, &intersection,
576 p2p_dbg(p2p, "Request to invite peer " MACSTR " role=%d persistent=%d "
/external/wpa_supplicant_8/src/p2p/
H A Dp2p_invitation.c178 int persistent; local
218 persistent = *msg.invitation_flags & P2P_INVITATION_FLAGS_TYPE;
222 * the request was for a persistent group if the attribute is
226 persistent = 1;
247 &go, group_bssid, &op_freq, persistent, &intersection,
576 p2p_dbg(p2p, "Request to invite peer " MACSTR " role=%d persistent=%d "
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p_invitation.c178 int persistent; local
218 persistent = *msg.invitation_flags & P2P_INVITATION_FLAGS_TYPE;
222 * the request was for a persistent group if the attribute is
226 persistent = 1;
247 &go, group_bssid, &op_freq, persistent, &intersection,
576 p2p_dbg(p2p, "Request to invite peer " MACSTR " role=%d persistent=%d "

Completed in 9054 milliseconds

12