/packages/modules/Bluetooth/system/gd/hci/ |
D | controller_unittest.cc | 36 ASSERT_TRUE(Controller::kLeEventMask53 > Controller::kDefaultLeEventMask); in TEST_F() 39 Controller::MaskLeEventMask(version.hci_version_, Controller::kDefaultLeEventMask), in TEST_F() 40 Controller::kDefaultLeEventMask); in TEST_F() 42 Controller::MaskLeEventMask(version.hci_version_, Controller::kDefaultLeEventMask), in TEST_F() 43 Controller::kLeEventMask53); in TEST_F() 46 …Controller::MaskLeEventMask(version.hci_version_, Controller::kDefaultLeEventMask), Controller::kL… in TEST_F() 49 …Controller::MaskLeEventMask(version.hci_version_, Controller::kDefaultLeEventMask), Controller::kL… in TEST_F() 52 …Controller::MaskLeEventMask(version.hci_version_, Controller::kDefaultLeEventMask), Controller::kL… in TEST_F() 55 …Controller::MaskLeEventMask(version.hci_version_, Controller::kDefaultLeEventMask), Controller::kL… in TEST_F()
|
D | controller.cc | 51 struct Controller::impl { 52 impl(Controller& module) : module_(module) {} in impl() 58 …EventCode::NUMBER_OF_COMPLETED_PACKETS, handler->BindOn(this, &Controller::impl::NumberOfCompleted… in Start() 63 … handler->BindOnceOn(this, &Controller::impl::read_local_name_complete_handler)); in Start() 65 … handler->BindOnceOn(this, &Controller::impl::read_local_version_information_complete_handler)); in Start() 67 … handler->BindOnceOn(this, &Controller::impl::read_local_supported_commands_complete_handler)); in Start() 71 handler->BindOnceOn(this, &Controller::impl::le_read_local_supported_features_handler)); in Start() 75 handler->BindOnceOn(this, &Controller::impl::le_read_supported_states_handler)); in Start() 82 … handler->BindOnceOn(this, &Controller::impl::read_local_extended_features_complete_handler, in Start() 96 … handler->BindOnceOn(this, &Controller::impl::read_buffer_size_complete_handler)); in Start() [all …]
|
D | controller.h | 33 class Controller : public Module, public ControllerInterface { 35 Controller(); 36 Controller(const Controller&) = delete; 37 Controller& operator=(const Controller&) = delete; 39 virtual ~Controller();
|
D | controller_test.cc | 293 fake_registry_.Start<Controller>(&thread_); in SetUp() 294 controller_ = static_cast<Controller*>(fake_registry_.GetModuleUnderTest(&Controller::Factory)); in SetUp() 304 Controller* controller_ = nullptr;
|
/packages/modules/Bluetooth/system/gd/rust/topshim/src/ |
D | controller.rs | 21 pub struct Controller { struct 25 unsafe impl Send for Controller {} implementation 27 impl Controller { implementation 28 pub fn new() -> Controller { in new() 30 Controller { internal: intf } in new()
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
D | HandleApiCalls.kt | 34 import com.android.deskclock.controller.Controller 106 Controller.getController().notifyVoiceFailure(mActivity, reason) in doInBackground() 133 Controller.getController().notifyVoiceSuccess(mActivity, voiceMessage) in doInBackground() 153 Controller.getController().notifyVoiceSuccess(mActivity, voiceMessage) in doInBackground() 190 Controller.getController().notifyVoiceFailure(mActivity, reason) in doInBackground() 214 Controller.getController().notifyVoiceFailure(this, voiceMessage) in handleSetAlarm() 224 Controller.getController().notifyVoiceFailure(this, voiceMessage) in handleSetAlarm() 246 Controller.getController().notifyVoiceFailure(this, voiceMessage) in handleSetAlarm() 290 Controller.getController().notifyVoiceSuccess(this, getString(R.string.alarm_is_set, time)) in handleSetAlarm() 299 Controller.getController().notifyVoiceSuccess(this, in handleDismissTimer() [all …]
|
D | DeskClockApplication.kt | 26 import com.android.deskclock.controller.Controller 40 Controller.getController().setContext(applicationContext) in onCreate() 41 Controller.getController().addEventTracker(LogEventTracker(applicationContext)) in onCreate()
|
D | AlarmInitReceiver.kt | 26 import com.android.deskclock.controller.Controller 65 Controller.getController().updateShortcuts() in onReceive() 75 Controller.getController().updateShortcuts() in onReceive()
|
D | FetchMatchingAlarmsAction.kt | 26 import com.android.deskclock.controller.Controller 163 Controller.getController().notifyVoiceFailure(activity, reason) in notifyFailureAndLog()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
D | MoreKeysPanel.java | 23 public interface Controller { interface 41 public static final Controller EMPTY_CONTROLLER = new Controller() { 63 public void showMoreKeysPanel(View parentView, Controller controller, int pointX, in showMoreKeysPanel()
|
/packages/modules/Bluetooth/system/gd/facade/ |
D | read_only_property_server.cc | 26 ReadOnlyPropertyService(hci::Controller* controller) : controller_(controller) {} in ReadOnlyPropertyService() 37 hci::Controller* controller_; 42 list->add<hci::Controller>(); in ListDependencies() 46 service_ = std::make_unique<ReadOnlyPropertyService>(GetDependency<hci::Controller>()); in Start()
|
/packages/modules/NeuralNetworks/runtime/ |
D | ExecutionPlan.h | 590 class Controller { 594 Controller(const Controller&) = delete; 595 Controller& operator=(const Controller&) = delete; 600 Controller(const ExecutionPlan* plan, ExecutionBuilder* executionBuilder, 678 std::shared_ptr<Controller> makeController(ExecutionBuilder* executionBuilder, 689 int next(std::shared_ptr<Controller> controller, std::shared_ptr<StepExecutor>* executor, 694 int fallback(std::shared_ptr<Controller> controller, std::shared_ptr<StepExecutor>* executor, 807 std::optional<Buffer> getBuffer(std::shared_ptr<Controller> controller, 812 int readConditionValue(std::shared_ptr<Controller> controller, SourceOperandIndex operandIndex, 816 int nextCompound(std::shared_ptr<Controller> controller, [all …]
|
D | ExecutionPlan.cpp | 1169 ExecutionPlan::Controller::Controller( in Controller() function in android::nn::ExecutionPlan::Controller 1259 std::shared_ptr<ExecutionPlan::Controller> ExecutionPlan::makeController( in makeController() 1433 return std::shared_ptr<Controller>(new Controller( in makeController() 1442 int ExecutionPlan::fallback(std::shared_ptr<Controller> controller, in fallback() 1453 if (controller->mFallbackNextStepIndex == Controller::kBadStepIndex) { in fallback() 1458 if (controller->mNextStepIndex == Controller::kBadStepIndex) { in fallback() 1513 std::shared_ptr<Controller> controller, SourceOperandIndex operandIndex) const { in getBuffer() 1544 int ExecutionPlan::readConditionValue(std::shared_ptr<Controller> controller, in readConditionValue() 1558 int ExecutionPlan::next(std::shared_ptr<Controller> controller, in next() 1573 if (controller->mNextStepIndex == Controller::kBadStepIndex) { in next() [all …]
|
/packages/modules/Bluetooth/system/gd/security/ |
D | security_module.cc | 48 hci::Controller* controller, in impl() 73 hci::Controller* controller_; 99 list->add<hci::Controller>(); in ListDependencies() 111 GetDependency<hci::Controller>(), in Start()
|
/packages/modules/Bluetooth/system/gd/hci/facade/ |
D | controller_facade.cc | 44 …ControllerFacadeService(Controller* controller, ::bluetooth::os::Handler*) : controller_(controlle… in ControllerFacadeService() 167 Controller* controller_; 172 list->add<Controller>(); in ListDependencies() 177 service_ = new ControllerFacadeService(GetDependency<Controller>(), GetHandler()); in Start()
|
D | facade.cc | 42 …HciFacadeService(HciLayer* hci_layer, Controller* controller, ::bluetooth::os::Handler* facade_han… in HciFacadeService() 221 Controller* controller_; 234 list->add<Controller>(); in ListDependencies() 239 …service_ = new HciFacadeService(GetDependency<HciLayer>(), GetDependency<Controller>(), GetHandler… in Start()
|
/packages/apps/DeskClock/src/com/android/deskclock/events/ |
D | Events.kt | 22 import com.android.deskclock.controller.Controller 97 Controller.getController().sendEvent(category, action, label) in sendEvent()
|
/packages/apps/DeskClock/src/com/android/deskclock/controller/ |
D | Controller.kt | 30 class Controller private constructor() { class 107 private val sController = Controller()
|
/packages/modules/Bluetooth/tools/rootcanal/proto/rootcanal/ |
D | configuration.proto | 60 message Controller { message 82 // Controller configuration for this port. 83 optional Controller configuration = 2;
|
/packages/modules/Bluetooth/system/gd/hci/acl_manager/ |
D | round_robin_scheduler.h | 36 …os::Handler* handler, Controller* controller, common::BidiQueueEnd<AclBuilder, AclView>* hci_queue… 65 Controller* controller_ = nullptr;
|
/packages/modules/Connectivity/nearby/service/java/com/android/server/nearby/provider/ |
D | AbstractDiscoveryProvider.java | 48 mController = new Controller(); in AbstractDiscoveryProvider() 99 private class Controller implements DiscoveryProviderController { class in AbstractDiscoveryProvider
|
/packages/modules/Bluetooth/system/main/shim/ |
D | btm_api.cc | 117 bluetooth::hci::Controller::kDefaultEventMask & ~(mask); in BTM_SetDefaultEventMaskExcept() 119 bluetooth::hci::Controller::kDefaultLeEventMask & ~(le_mask); in BTM_SetDefaultEventMaskExcept()
|
D | stack.cc | 89 modules.add<hci::Controller>(); in StartEverything() 109 if (stack_manager_.IsStarted<hci::Controller>()) { in StartEverything()
|
/packages/modules/Bluetooth/tools/rootcanal/ |
D | README.md | 3 RootCanal is a virtual Bluetooth Controller. RootCanal aims reducing the 46 a custom Controller configuration file. All properties defined in
|
/packages/modules/Bluetooth/system/gd/security/internal/ |
D | security_manager_impl.h | 67 hci::Controller* controller, 258 hci::Controller* controller_;
|