/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/ |
D | tracing_controller_backend_unittest.py | 121 self.controller = ( 123 self.controller._supported_agents_classes = [FakeTracingAgentBase] 125 self.controller_log = self.controller._trace_log 128 if self.controller.is_tracing_running: 129 self.controller.StopTracing() 133 self.assertFalse(self.controller.is_tracing_running) 134 self.assertTrue(self.controller.StartTracing(self.config, 30)) 135 self.assertTrue(self.controller.is_tracing_running) 139 self.assertFalse(self.controller.is_tracing_running) 140 self.assertTrue(self.controller.StartTracing(self.config, 30)) [all …]
|
/external/autotest/server/site_tests/platform_ServoPowerStateController/ |
D | platform_ServoPowerStateController.py | 25 self.controller.power_off() 27 self.controller.power_on(self.controller.REC_OFF) 68 self.controller.power_off() 73 self.controller.power_on(self.controller.REC_ON) 81 self.controller.power_off() 87 self.controller.power_on(self.controller.REC_ON) 88 self.controller.power_off() 95 self.controller.power_on(self.controller.REC_OFF) 104 self.controller.power_off() 109 self.controller.power_off() [all …]
|
/external/libchrome/base/message_loop/ |
D | message_pump_libevent.cc | 137 FileDescriptorWatcher *controller, in WatchFileDescriptor() argument 140 DCHECK(controller); in WatchFileDescriptor() 155 std::unique_ptr<event> evt(controller->ReleaseEvent()); in WatchFileDescriptor() 179 event_set(evt.get(), fd, event_mask, OnLibeventNotification, controller); in WatchFileDescriptor() 192 controller->Init(evt.release()); in WatchFileDescriptor() 194 controller->set_watcher(delegate); in WatchFileDescriptor() 195 controller->set_pump(this); in WatchFileDescriptor() 324 FileDescriptorWatcher* controller = in OnLibeventNotification() local 326 DCHECK(controller); in OnLibeventNotification() 330 MessagePumpLibevent* pump = controller->pump(); in OnLibeventNotification() [all …]
|
/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/output/ |
D | FileOutputTest.java | 41 FileOutput controller = new FileOutput(); in testCreateDestFileOnStartup() local 42 controller.startup(options, new RuntimeData()); in testCreateDestFileOnStartup() 55 FileOutput controller = new FileOutput(); in testWriteData() local 56 controller.startup(options, new RuntimeData()); in testWriteData() 57 controller.writeExecutionData(false); in testWriteData() 58 controller.shutdown(); in testWriteData() 69 FileOutput controller = new FileOutput(); in testInvalidDestFile() local 72 controller.startup(options, new RuntimeData()); in testInvalidDestFile()
|
D | TcpServerOutputTest.java | 51 private TcpServerOutput controller; field in TcpServerOutputTest 60 controller = new TcpServerOutput(logger) { in setup() 68 controller.startup(options, data); in setup() 74 controller.shutdown(); in testShutdownWithoutConnection() 82 controller.shutdown(); in testShutdownWithConnection() 102 controller.writeExecutionData(false); in testWriteExecutionData() 117 controller.shutdown(); in testWriteExecutionData() 131 controller.shutdown(); in testInvalidHeader() 136 final InetAddress addr = controller.getInetAddress(null); in testGetInetAddressLoopback() 142 final InetAddress addr = controller.getInetAddress("*"); in testGetInetAddressAny()
|
D | TcpClientOutputTest.java | 43 private IAgentOutput controller; field in TcpClientOutputTest 59 controller = new TcpClientOutput(logger) { in setup() 67 controller.startup(new AgentOptions(), data); in setup() 73 controller.shutdown(); in testShutdown() 81 controller.shutdown(); in testRemoteClose() 90 controller.shutdown(); in testInvalidCommand() 99 controller.writeExecutionData(false); in testWriteExecutionData() 115 controller.shutdown(); in testWriteExecutionData()
|
/external/ltp/testcases/kernel/controllers/ |
D | README | 7 The cpu controller test creates the cpu controller device as /dev/cpuctl. In 11 The cpuset controller also creates the device as /dev/cpuset, so please do the 37 Directory containing the cpu controller testcases. A similar directory will 38 be created for any new controller. 42 Directory containing the memory controller testcases. A similar directory will 43 be created for any new controller. 47 Directory containing the cpuset controller testcases. A similar directory will 48 be created for any new controller. 56 Directory containing the cpu accounting controller testcases. 63 cpu controller. If yes it enters lower directory and compiles the source files
|
D | testplan.txt | 5 of cpu controller, memory controller and cpuset controller. 6 There are test cases to test cpu, memory and cpuset controller. In future new 8 Each new controller will have it's own directory to contain all its test
|
/external/chromium-trace/catapult/systrace/profile_chrome/ |
D | profiler.py | 15 def _GetResults(trace_results, controller, output, compress, write_json, argument 22 for agent in controller.get_child_agents: 28 trace_results = [x for x in controller.all_results if not (x.source_name == 85 controller = tracing_controller.TracingController(agents_with_config, 88 result = controller.StartTracing() 89 trace_type = controller.GetTraceType() 102 all_results = controller.StopTracing() 107 return _GetResults(all_results, controller, output, compress, write_json,
|
/external/clang/test/Parser/ |
D | missing-selector-name.mm | 15 PodiumWalkerController *controller; 16 return controller.PROP; 29 PodiumWalkerController *controller; 30 return controller.PROP; 50 PodiumWalkerController *controller; 51 return controller.PROP;
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/ |
D | BluetoothMediaFacade.java | 168 MediaController controller = (MediaController) controllers.get(i); in onActiveSessionsChanged() local 169 if ((controller.getTag().contains(BluetoothSL4AAudioSrcMBS.getTag())) in onActiveSessionsChanged() 170 || (controller.getTag().contains(A2DP_MBS_TAG))) { in onActiveSessionsChanged() 171 setCurrentMediaController(controller); in onActiveSessionsChanged() 229 private void setCurrentMediaController(MediaController controller) { in setCurrentMediaController() argument 231 if (mMediaController == null && controller != null) { in setCurrentMediaController() 232 Log.d(TAG + " Setting MediaController " + controller.getTag()); in setCurrentMediaController() 233 mMediaController = controller; in setCurrentMediaController() 235 } else if (mMediaController != null && controller != null) { in setCurrentMediaController() 237 if (controller.getSessionToken().equals(mMediaController.getSessionToken()) in setCurrentMediaController() [all …]
|
/external/protobuf/python/google/protobuf/internal/ |
D | service_reflection_test.py | 52 def CallMethod(self, method, controller, request, response, callback): argument 54 self.controller = controller 109 def CallMethod(self, method, controller, request, argument 112 self.controller = controller 135 self.assertEqual(rpc_controller, channel.controller)
|
/external/ltp/testcases/kernel/controllers/memctl/ |
D | README | 3 The directory memctl contains the tests related to memory controller. 8 The aim of the tests is to test memory controller functionality. 14 These are the tasks to run for memory controller testing. 24 directory and mounts cgroup filesystem on it with memory controller. It then 32 any of the groups in controller dir tree. 36 This script creates different scenarios for memory controller testing and
|
D | memctl_testplan.txt | 1 The memory controller testplan includes a complete set of testcases that 2 test the memory controller in different scenarios. 4 **These testcases test the memory controller under single level.**
|
/external/ltp/testcases/kernel/controllers/cpuctl_fj/ |
D | README | 4 The directory cpuctl_fj contains the tests related to the cpu controller. 6 Cpu controller is a mechanism for assigning cpu resource (in percent) to 11 controller. 17 The aim of the tests is to test the functionality of cpu controller.
|
/external/libmojo/base/android/junit/src/org/chromium/base/ |
D | BaseChromiumApplicationTest.java | 60 ActivityController<Activity> controller = in testWindowsFocusChanged() local 63 (TrackingShadowActivity) Robolectric.shadowOf(controller.get()); in testWindowsFocusChanged() 65 controller.get().getWindow().getCallback().onWindowFocusChanged(true); in testWindowsFocusChanged() 67 verify(mock).onWindowFocusChanged(controller.get(), true); in testWindowsFocusChanged()
|
/external/sonivox/jet_tools/JetCreator/ |
D | midifile.py | 487 def __init__ (self, ticks, seq, channel, controller, value): argument 493 self.controller = controller 498 controller = ReadByte(stream) 503 if controller >= 120: 504 return ChannelModeEvent(ticks, seq, channel, controller, value) 505 return ControlChangeEvent(ticks, seq, channel, controller, value) 507 self.WriteRunningStatus(stream, track, filters, CONTROL_CHANGE, self.controller, self.value) 509 return '%s: ch=%d c=%d v=%d' % (self.name, self.channel, self.controller, self.value) 515 def __init__ (self, ticks, seq, channel, controller, value): argument 521 self.controller = controller [all …]
|
/external/google-breakpad/src/client/ios/ |
D | BreakpadController.mm | 161 NSAssert(started_, @"The controller must be started before " 172 @"The controller must be started before setUploadingEnabled is called"); 192 @"The controller must not be started when updateConfiguration is called"); 202 @"The controller must not be started when resetConfiguration is called"); 213 @"The controller must not be started when setUploadingURL is called"); 219 @"The controller must not be started when setUploadInterval is called"); 227 NSAssert(!started_, @"The controller must not be started when " 235 @"The controller must be started before addUploadParameter is called"); 243 NSAssert(started_, @"The controller must be started before " 253 @"The controller must be started before withBreakpadRef is called"); [all …]
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/power_monitor/ |
D | android_power_monitor_controller_unittest.py | 49 controller = android_power_monitor_controller.AndroidPowerMonitorController( 51 self.assertEqual(controller.CanMonitorPower(), True) 52 controller.StartMonitoringPower(None) 53 controller_returns = controller.StopMonitoringPower()
|
/external/libcxx/test/support/ |
D | container_test_types.h | 269 ConstructController* controller; variable 272 : controller(getConstructController()) {} in ContainerTestAllocator() 275 : controller(c) in ContainerTestAllocator() 280 : controller(other.controller) in ContainerTestAllocator() 297 assert(controller->check<Args&&...>()); in construct() 299 InAllocatorConstructGuard g(controller); in construct() 309 InAllocatorConstructGuard g(controller); in destroy()
|
/external/chromium-trace/catapult/systrace/systrace/ |
D | run_systrace.py | 172 controller = systrace_runner.SystraceRunner( 174 controller.StartTracing() 189 controller.StopTracing() 191 controller.OutputSystraceResults(write_json=options.write_json)
|
/external/dtc/tests/ |
D | obsolete-chosen-interrupt-controller.dts | 8 interrupt-controller; 11 interrupt-controller = <&PIC>;
|
/external/skia/experimental/iOSSampleApp/Shared/ |
D | SkUIDetailViewController.mm | 109 UIPrintInteractionController *controller = [UIPrintInteractionController sharedPrintController]; 118 controller.printInfo = printInfo; 119 controller.printingItem = data; 132 [controller presentFromBarButtonItem:fPrintButton animated:YES 135 [controller presentAnimated:YES completionHandler:SkCompletionHandler];
|
/external/ltp/testcases/kernel/controllers/io-throttle/ |
D | README | 4 bandwdith controller. 29 controller. It then creates a number(n) of groups in /dev/blockioctl. The 36 any of the groups in controller dir tree. 40 This script creates different scenarios for I/O bandwidth controller testing
|
/external/autotest/client/profilers/powertop/src/ |
D | urbnum.c | 44 int controller; member 126 ptr->controller = 1; in update_urbnum() 193 if (dev->active-1 > dev->previous_active && !dev->controller) in usb_activity_hint() 204 if (dev->active-1 > dev->previous_active && !dev->controller) { in usb_activity_hint()
|