Searched defs:properties (Results 126 - 150 of 412) sorted by relevance

1234567891011>>

/external/chromium_org/chromeos/dbus/
H A Dnfc_client_helpers.cc110 // Create the properties structure.
111 NfcPropertySet* properties = delegate_->CreateProperties(object_proxy); local
112 properties->ConnectSignals();
113 properties->GetAll();
114 ObjectPropertyPair object = std::make_pair(object_proxy, properties);
133 // Clean up the object proxy and the properties structure.
142 NfcPropertySet* properties = GetObjectProperties(object_path); local
143 if (properties)
144 properties->GetAll();
178 NfcPropertySet* properties local
244 NfcPropertySet* properties = local
[all...]
/external/chromium_org/chromeos/network/
H A Dclient_cert_resolver_unittest.cc229 const base::DictionaryValue* properties = local
231 if (!properties)
233 properties->GetStringWithoutPathExpansion(shill::kEapCertIdProperty,
H A Dclient_cert_util.cc132 // Look for VPN specific client certificate properties.
139 // Look for OpenVPN specific properties.
145 // Look for L2TP-IPsec specific properties.
161 // Look for EAP specific client certificate properties, which can either be
185 base::DictionaryValue* properties) {
191 properties->SetStringWithoutPathExpansion(shill::kOpenVPNPinProperty,
193 properties->SetStringWithoutPathExpansion(
198 properties->SetStringWithoutPathExpansion(shill::kL2tpIpsecPinProperty,
200 properties->SetStringWithoutPathExpansion(
202 properties
182 SetShillProperties(const ConfigType cert_config_type, const int tpm_slot, const std::string& pkcs11_id, base::DictionaryValue* properties) argument
224 SetEmptyShillProperties(const ConfigType cert_config_type, base::DictionaryValue* properties) argument
[all...]
H A Ddevice_state.h27 const base::DictionaryValue& properties) OVERRIDE;
30 const base::DictionaryValue& properties);
57 const base::DictionaryValue& properties() const { return properties_; } function in class:chromeos::DeviceState
71 // Cellular specific properties
89 // Ethernet specific properties
92 // Keep all Device properties in a dictionary for now. See comment above.
95 // Dictionary of IPConfig properties, keyed by IpConfig path.
H A Dnetwork_cert_migrator.cc75 // Request properties for each network that has a CaCertNssProperty set
96 const base::DictionaryValue& properties) {
103 MigrateClientCertProperties(service_path, properties, &new_properties);
104 MigrateNssProperties(service_path, properties, &new_properties);
112 const base::DictionaryValue& properties,
119 properties, &config_type, &configured_slot_id, &pkcs11_id);
153 const base::DictionaryValue& properties,
160 properties, &nss_key, &pem_key, &pem_property, &nickname, &uma_type);
272 const base::DictionaryValue& properties) {
275 properties, local
95 MigrateNetwork(const std::string& service_path, const base::DictionaryValue& properties) argument
111 MigrateClientCertProperties(const std::string& service_path, const base::DictionaryValue& properties, base::DictionaryValue* new_properties) argument
152 MigrateNssProperties(const std::string& service_path, const base::DictionaryValue& properties, base::DictionaryValue* new_properties) argument
271 SendPropertiesToShill(const std::string& service_path, const base::DictionaryValue& properties) argument
[all...]
H A Dnetwork_cert_migrator_unittest.cc185 const base::DictionaryValue* properties = local
187 properties->GetStringWithoutPathExpansion(shill::kEapCertIdProperty,
219 const base::DictionaryValue* properties = local
221 ASSERT_TRUE(properties);
223 properties->GetDictionaryWithoutPathExpansion(shill::kProviderProperty,
241 const base::DictionaryValue* properties = local
243 properties->GetStringWithoutPathExpansion(shill::kEapCaCertNssProperty,
246 properties->GetListWithoutPathExpansion(shill::kEapCaCertPemProperty,
267 const base::DictionaryValue* properties = local
270 properties
[all...]
H A Dnetwork_connection_handler_unittest.cc189 const base::DictionaryValue* properties = local
191 if (properties)
192 properties->GetStringWithoutPathExpansion(key, &result);
H A Dnetwork_profile_handler.cc37 LOG(ERROR) << "Error when requesting properties for profile "
72 const base::DictionaryValue& properties) {
74 LOG(ERROR) << "Error when requesting manager properties.";
79 properties.GetWithoutPathExpansion(shill::kProfilesProperty, &profiles);
81 LOG(ERROR) << "Manager properties returned from Shill don't contain "
126 VLOG(2) << "Requesting properties of profile path " << *it << ".";
138 const base::DictionaryValue& properties) {
140 properties.GetStringWithoutPathExpansion(shill::kUserHashProperty, &userhash);
70 GetManagerPropertiesCallback( DBusMethodCallStatus call_status, const base::DictionaryValue& properties) argument
136 GetProfilePropertiesCallback( const std::string& profile_path, const base::DictionaryValue& properties) argument
H A Dnetwork_state.cc31 bool IsCaCertNssSet(const base::DictionaryValue& properties) { argument
33 if (properties.GetStringWithoutPathExpansion(shill::kEapCaCertNssProperty,
40 properties.GetDictionaryWithoutPathExpansion(shill::kProviderProperty,
77 // Keep care that these properties are the same as in |GetProperties|.
150 const base::DictionaryValue& properties) {
153 if (!properties.HasKey(shill::kTypeProperty)) {
155 shill_property_util::GetNetworkIdFromProperties(properties));
159 changed |= UpdateName(properties);
163 has_ca_cert_nss_ = IsCaCertNssSet(properties);
191 // Wireless properties
149 InitialPropertiesReceived( const base::DictionaryValue& properties) argument
222 IPConfigPropertiesChanged( const base::DictionaryValue& properties) argument
323 UpdateName(const base::DictionaryValue& properties) argument
[all...]
H A Dshill_property_util.cc72 void SetSSID(const std::string ssid, base::DictionaryValue* properties) { argument
74 properties->SetStringWithoutPathExpansion(shill::kWifiHexSsid, hex_ssid);
77 std::string GetSSIDFromProperties(const base::DictionaryValue& properties, argument
87 properties.GetStringWithoutPathExpansion(shill::kNameProperty, &name);
90 properties.GetStringWithoutPathExpansion(shill::kWifiHexSsid, &hex_ssid);
122 properties.GetStringWithoutPathExpansion(shill::kCountryProperty,
149 const base::DictionaryValue& properties) {
150 if (properties.empty())
153 if (properties.GetStringWithoutPathExpansion(shill::kGuidProperty, &result))
155 if (properties
148 GetNetworkIdFromProperties( const base::DictionaryValue& properties) argument
164 GetNameFromProperties(const std::string& service_path, const base::DictionaryValue& properties) argument
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dppb_var_deprecated_impl.cc132 PP_Var** properties,
140 *properties = NULL;
155 *properties = identifier_vars.Release(
130 EnumerateProperties(PP_Var var, uint32_t* property_count, PP_Var** properties, PP_Var* exception) argument
/external/chromium_org/dbus/
H A Dobject_manager_unittest.cc55 Properties* properties = new Properties( variable
59 return static_cast<PropertySet*>(properties);
147 Properties* properties = static_cast<Properties*>( local
151 if (name == properties->name.name())
152 last_name_value_ = properties->name.value();
229 Properties* properties = static_cast<Properties*>( local
232 EXPECT_TRUE(properties != NULL);
234 EXPECT_EQ("TestService", properties->name.value());
235 EXPECT_EQ(10, properties->version.value());
237 std::vector<std::string> methods = properties
256 Properties* properties = static_cast<Properties*>( local
263 Properties* properties = static_cast<Properties*>( local
317 Properties* properties = static_cast<Properties*>( local
352 Properties* properties = static_cast<Properties*>( local
[all...]
/external/chromium_org/device/bluetooth/
H A Dbluetooth_remote_gatt_characteristic_chromeos.cc87 BluetoothGattCharacteristicClient::Properties* properties = local
90 DCHECK(properties);
91 return device::BluetoothUUID(properties->uuid.value());
110 BluetoothGattCharacteristicClient::Properties* properties = local
113 DCHECK(properties);
116 const std::vector<std::string>& flags = properties->flags.value();
153 BluetoothGattCharacteristicClient::Properties* properties = local
157 DCHECK(properties);
159 return properties->notifying.value();
340 BluetoothGattDescriptorClient::Properties* properties local
[all...]
H A Dbluetooth_remote_gatt_service_chromeos.cc69 BluetoothGattServiceClient::Properties* properties = local
72 DCHECK(properties);
73 return device::BluetoothUUID(properties->uuid.value());
81 BluetoothGattServiceClient::Properties* properties = local
84 DCHECK(properties);
85 return properties->primary.value();
202 BluetoothGattServiceClient::Properties* properties = local
205 DCHECK(properties);
207 if (property_name != properties->characteristics.name()) {
230 BluetoothGattCharacteristicClient::Properties* properties local
286 BluetoothGattCharacteristicClient::Properties* properties = local
[all...]
/external/chromium_org/device/nfc/
H A Dnfc_adapter_chromeos.cc154 NfcAdapterClient::Properties* properties =
157 if (property_name == properties->powered.name())
158 PoweredChanged(properties->powered.value());
159 else if (property_name == properties->polling.name())
160 PollingChanged(properties->polling.value());
256 NfcAdapterClient::Properties* properties = local
260 if (properties->powered.value())
262 if (properties->polling.value())
300 NfcAdapterClient::Properties* properties = local
303 if (properties
[all...]
H A Dnfc_chromeos_unittest.cc325 NfcAdapterClient::Properties* properties = local
328 properties->powered.Set(true, base::Bind(&OnSet));
338 EXPECT_TRUE(properties->powered.value());
339 EXPECT_TRUE(properties->polling.value());
376 NfcAdapterClient::Properties* properties = local
379 properties->powered.Set(true, base::Bind(&OnSet));
389 EXPECT_TRUE(properties->powered.value());
390 EXPECT_TRUE(properties->polling.value());
/external/chromium_org/extensions/browser/api/bluetooth_low_energy/
H A Dbluetooth_low_energy_api.cc162 apibtle::ConnectProperties* properties = params.get()->properties.get(); local
163 if (properties)
164 persistent = properties->persistent;
601 apibtle::NotificationProperties* properties = params.get()->properties.get(); local
602 if (properties)
603 persistent = properties->persistent;
/external/chromium_org/extensions/browser/api/sockets_tcp_server/
H A Dsockets_tcp_server_api.cc50 SocketProperties* properties) {
51 if (properties->name.get()) {
52 socket->set_name(*properties->name.get());
54 if (properties->persistent.get()) {
55 socket->set_persistent(*properties->persistent.get());
91 sockets_tcp_server::SocketProperties* properties = local
92 params_.get()->properties.get();
93 if (properties) {
94 SetSocketProperties(socket, properties);
119 SetSocketProperties(socket, &params_.get()->properties);
49 SetSocketProperties(ResumableTCPServerSocket* socket, SocketProperties* properties) argument
[all...]
/external/chromium_org/ppapi/proxy/
H A Dppb_var_deprecated_proxy.cc125 PP_Var** properties,
131 *properties = NULL;
136 property_count, properties);
123 EnumerateProperties(PP_Var var, uint32_t* property_count, PP_Var** properties, PP_Var* exception) argument
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DCompositorAnimations.cpp80 PropertySet properties = keyframeEffect.properties(); local
82 if (properties.isEmpty())
88 for (PropertySet::const_iterator it = properties.begin(); it != properties.end(); ++it) {
141 PropertySet properties = keyframeEffect.properties(); local
143 if (properties.isEmpty())
146 for (PropertySet::const_iterator it = properties.begin(); it != properties
413 PropertySet properties = effect.properties(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DElementRuleCollector.cpp253 m_result.addMatchedProperties(&ruleData->rule()->properties(), ruleData->linkMatchType(), ruleData->propertyWhitelistType(m_matchingUARules));
284 // If the rule has no properties to apply, then ignore it in the non-debug mode.
285 const StylePropertySet& properties = rule->properties(); local
286 if (properties.isEmpty() && !matchRequest.includeEmptyRules)
301 if ((dynamicPseudo == BEFORE || dynamicPseudo == AFTER) && !ruleData.rule()->properties().hasProperty(CSSPropertyContent))
H A DStyleRule.cpp276 void StyleRule::setProperties(PassRefPtrWillBeRawPtr<StylePropertySet> properties) argument
278 m_properties = properties;
310 void StyleRulePage::setProperties(PassRefPtrWillBeRawPtr<StylePropertySet> properties) argument
312 m_properties = properties;
343 void StyleRuleFontFace::setProperties(PassRefPtrWillBeRawPtr<StylePropertySet> properties) argument
345 m_properties = properties;
439 void StyleRuleViewport::setProperties(PassRefPtrWillBeRawPtr<StylePropertySet> properties) argument
441 m_properties = properties;
474 void StyleRuleFilter::setProperties(PassRefPtrWillBeRawPtr<StylePropertySet> properties) argument
476 m_properties = properties;
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInjectedScript.cpp195 void InjectedScript::getProperties(ErrorString* errorString, const String& objectId, bool ownProperties, bool accessorPropertiesOnly, RefPtr<Array<PropertyDescriptor> >* properties) argument
208 *properties = Array<PropertyDescriptor>::runtimeCast(result);
211 void InjectedScript::getInternalProperties(ErrorString* errorString, const String& objectId, RefPtr<Array<InternalPropertyDescriptor> >* properties) argument
224 *properties = array;
/external/chromium_org/third_party/skia/src/gpu/
H A DGrStencilAndCoverTextContext.cpp23 GrContext* context, const SkDeviceProperties& properties)
24 : GrTextContext(context, properties)
22 GrStencilAndCoverTextContext( GrContext* context, const SkDeviceProperties& properties) argument
/external/chromium_org/ui/compositor/
H A Dlayer_animation_element.h40 // Used when iterating over properties.
64 LayerAnimationElement(AnimatableProperties properties,
129 // Creates an element that pauses the given properties. The caller owns the
132 AnimatableProperties properties,
185 // The properties that the element modifies.
186 AnimatableProperties properties() const { return properties_; } function in class:ui::LayerAnimationElement

Completed in 436 milliseconds

1234567891011>>