/system/keymaster/ |
keymaster_configuration.cpp | 64 keymaster_error_t ConfigureDevice(keymaster2_device_t* dev, uint32_t os_version, 72 keymaster_error_t ConfigureDevice(keymaster2_device_t* dev) { 81 return ConfigureDevice(dev, version, patchlevel);
|
/system/connectivity/shill/ |
mock_profile.h | 42 MOCK_METHOD1(ConfigureDevice, bool(const DeviceRefPtr& device));
|
profile.h | 134 virtual bool ConfigureDevice(const DeviceRefPtr& device);
|
profile.cc | 222 bool Profile::ConfigureDevice(const DeviceRefPtr& device) {
|
manager.cc | 496 profile->ConfigureDevice(device); [all...] |
manager_unittest.cc | 612 EXPECT_CALL(*profile, ConfigureDevice(device_ref)); [all...] |
/system/keymaster/include/keymaster/ |
keymaster_configuration.h | 33 keymaster_error_t ConfigureDevice(keymaster2_device_t* dev);
|
/system/security/keystore/ |
keystore_main.cpp | 45 keymaster_error_t error = keymaster::ConfigureDevice(main); 50 error = keymaster::ConfigureDevice(fallback);
|
/hardware/libhardware/modules/input/evdev/ |
InputDevice.h | 66 void configureDevice();
|
InputDevice.cpp | 123 configureDevice(); 226 void EvdevDevice::configureDevice() {
|
/hardware/qcom/audio/legacy/alsa_sound/ |
AudioUsbALSA.h | 90 struct pcm * configureDevice(unsigned flags, char* hw, int sampleRate, int channelCount, int periodSize, bool playback);
|
AudioUsbALSA.cpp | 407 musbRecordingHandle = configureDevice(PCM_IN|channelFlag|PCM_MMAP, (char *)"hw:1,0", 419 mproxyRecordingHandle = configureDevice(PCM_OUT|channelFlag|PCM_MMAP, (char *)"hw:0,7", 590 struct pcm * AudioUsbALSA::configureDevice(unsigned flags, char* hw, int sampleRate, int channelCount, int periodSize, bool playback){ 800 musbPlaybackHandle = configureDevice(PCM_OUT|PCM_STEREO|PCM_MMAP, (char *)"hw:1,0", 818 mproxyPlaybackHandle = configureDevice(PCM_IN|PCM_STEREO|PCM_MMAP, (char *)"hw:0,8", [all...] |