HomeSort by relevance Sort by last modified time
    Searched refs:service_options (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/extensions/browser/api/bluetooth_socket/
bluetooth_socket_api.cc 373 device::BluetoothAdapter::ServiceOptions service_options; local
374 service_options.name = name.Pass();
379 service_options.channel.reset(new int(*(options->channel)));
382 adapter->CreateRfcommService(uuid, service_options, callback, error_callback);
416 device::BluetoothAdapter::ServiceOptions service_options; local
417 service_options.name = name.Pass();
428 service_options.psm.reset(new int(psm));
432 adapter->CreateL2capService(uuid, service_options, callback, error_callback);
bluetooth_socket_apitest.cc 156 BluetoothAdapter::ServiceOptions service_options; local
157 service_options.name.reset(new std::string("MyServiceName"));
  /external/chromium_org/device/bluetooth/
bluetooth_socket_chromeos.cc 121 const BluetoothAdapter::ServiceOptions& service_options,
138 if (service_options.name)
139 options_->name.reset(new std::string(*service_options.name));
144 new uint16(service_options.channel ? *service_options.channel : 0));
148 new uint16(service_options.psm ? *service_options.psm : 0));
bluetooth_socket_chromeos.h 59 // as UUID |uuid|. The |service_options| argument is interpreted according to
68 const device::BluetoothAdapter::ServiceOptions& service_options,
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
descriptor_test.py 168 service_options = service_descriptor.GetOptions()
170 self.assertEqual(-9876543210, service_options.Extensions[service_opt1])

Completed in 198 milliseconds