Home
last modified time | relevance | path

Searched refs:new_config (Results 1 – 8 of 8) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudfront/
Ddistribution.py357 new_config = DistributionConfig(self.connection, self.config.origin,
363 new_config.enabled = enabled
365 new_config.cnames = cnames
367 new_config.comment = comment
368 self.etag = self.connection.set_distribution_config(self.id, self.etag, new_config)
369 self.config = new_config
735 new_config = StreamingDistributionConfig(self.connection,
743 new_config.enabled = enabled
745 new_config.cnames = cnames
747 new_config.comment = comment
[all …]
Didentity.py52 new_config = OriginAccessIdentityConfig(self.connection,
56 new_config.comment = comment
57 self.etag = self.connection.set_origin_identity_config(self.id, self.etag, new_config)
58 self.config = new_config
/external/autotest/client/bin/
Dkernel_config.py126 def update_config(self, old_config, new_config = 'None'): argument
130 if new_config:
131 shutil.copyfile(self.build_config, new_config)
/external/valgrind/callgrind/
Dclo.c122 static config_node* new_config(const HChar* name, int length) in new_config() function
182 new_sub = new_config(name, 1); in get_fnc2()
205 new_sub = new_config(name, len); in get_fnc2()
224 new_node = new_config(n->name, len); in get_fnc2()
241 new_sub = new_config(name, offset); in get_fnc2()
266 new_sub = new_config(name, offset); in get_fnc2()
306 fn_configs = new_config(name, 0); in get_fnc()
/external/chromium-trace/catapult/dashboard/dashboard/
Dstart_try_job.py563 new_config = (base_config[:base_config.rfind('config')] +
568 new_config = new_config.replace('\r', '')
569 new_header = 'blob %d\0' % len(new_config)
570 new_sha = hashlib.sha1(new_header + new_config).hexdigest()
572 new_config.split('\n'),
/external/libusb/libusb/os/
Ddarwin_usb.c806 uint8_t new_config; in darwin_claim_interface() local
845 new_config = 1; in darwin_claim_interface()
847 new_config = configDesc->bConfigurationValue; in darwin_claim_interface()
849 usbi_info (HANDLE_CTX (dev_handle), "new configuration value is %d", new_config); in darwin_claim_interface()
852 kresult = darwin_set_configuration (dev_handle, new_config); in darwin_claim_interface()
/external/webrtc/talk/app/webrtc/
Dpeerconnection.cc1839 InternalDataChannelInit new_config = in InternalCreateDataChannel() local
1842 if (new_config.id < 0) { in InternalCreateDataChannel()
1845 !sid_allocator_.AllocateSid(role, &new_config.id)) { in InternalCreateDataChannel()
1849 } else if (!sid_allocator_.ReserveSid(new_config.id)) { in InternalCreateDataChannel()
1857 session_.get(), session_->data_channel_type(), label, new_config)); in InternalCreateDataChannel()
1859 sid_allocator_.ReleaseSid(new_config.id); in InternalCreateDataChannel()
/external/webrtc/webrtc/modules/desktop_capture/
Dscreen_capturer_mac.mm394 MacDesktopConfiguration new_config =
396 if (!desktop_config_.Equals(new_config)) {
397 desktop_config_ = new_config;