Home
last modified time | relevance | path

Searched refs:console (Results 1 – 25 of 497) sorted by relevance

12345678910>>...20

/external/toybox/toys/other/
Dswitch_root.c25 char *console; in GLOBALS()
49 int console = console; // gcc's "may be used" warnings are broken. in switch_root_main() local
81 if (TT.console && -1 == (console = open(TT.console, O_RDWR))) { in switch_root_main()
82 perror_msg("bad console '%s'", TT.console); in switch_root_main()
107 if (TT.console) { in switch_root_main()
109 for (i=0; i<3; i++) if (console != i) dup2(console, i); in switch_root_main()
110 if (console>2) close(console); in switch_root_main()
/external/jcommander/src/main/java/com/beust/jcommander/internal/
DJDK6Console.java10 private Object console; field in JDK6Console
14 public JDK6Console(Object console) throws Exception { in JDK6Console() argument
15 this.console = console; in JDK6Console()
16 Method writerMethod = console.getClass().getDeclaredMethod("writer", new Class<?>[0]); in JDK6Console()
17 writer = (PrintWriter) writerMethod.invoke(console, new Object[0]); in JDK6Console()
33 method = console.getClass().getDeclaredMethod("readLine", new Class<?>[0]); in readPassword()
34 return ((String) method.invoke(console, new Object[0])).toCharArray(); in readPassword()
36 method = console.getClass().getDeclaredMethod("readPassword", new Class<?>[0]); in readPassword()
37 return (char[]) method.invoke(console, new Object[0]); in readPassword()
/external/jacoco/org.jacoco.examples.test/src/org/jacoco/examples/
DCoreTutorialTest.java25 public ConsoleOutput console = new ConsoleOutput(); field in CoreTutorialTest
29 new CoreTutorial(console.stream).execute(); in testRunExample()
31 console.expect(containsLine("0 of 3 methods missed")); in testRunExample()
32 console.expect(containsLine("1 of 5 complexity missed")); in testRunExample()
33 console.expect(containsLine("Line 46: ")); in testRunExample()
34 console.expect(containsLine("Line 47: green")); in testRunExample()
35 console.expect(containsLine("Line 48: yellow")); in testRunExample()
36 console.expect(containsLine("Line 49: red")); in testRunExample()
DClassInfoTest.java30 public ConsoleOutput console = new ConsoleOutput(); field in ClassInfoTest
36 new ClassInfo(console.stream).execute(args); in testRunExample()
38 console.expect(containsLine("class name: org/jacoco/examples/ClassInfoTest")); in testRunExample()
39 console.expect(containsLine("methods: 3")); in testRunExample()
40 console.expect(containsLine("branches: 2")); in testRunExample()
41 console.expect(containsLine("complexity: 4")); in testRunExample()
DExecDumpTest.java33 public ConsoleOutput console = new ConsoleOutput(); field in ExecDumpTest
40 new ExecDump(console.stream).execute(args); in testRunExample()
42 console.expect(containsLine("exec file: " + file)); in testRunExample()
43 console.expect(containsLine("CLASS ID HITS/PROBES CLASS NAME")); in testRunExample()
44 console.expect(containsString("Session \"testid\":")); in testRunExample()
45 console.expect(containsLine("0000000000001234 2 of 3 foo/MyClass")); in testRunExample()
/external/pdfium/fpdfsdk/src/javascript/
Dconsole.cpp31 IMPLEMENT_JS_CLASS(CJS_Console, console) in END_JS_STATIC_CONST()
33 console::console(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject) {} in END_JS_STATIC_CONST()
35 console::~console() {} in ~console()
37 FX_BOOL console::clear(IJS_Context* cc, in clear()
44 FX_BOOL console::hide(IJS_Context* cc, in hide()
51 FX_BOOL console::println(IJS_Context* cc, in println()
61 FX_BOOL console::show(IJS_Context* cc, in show()
Dconsole.h12 class console : public CJS_EmbedObj {
14 console(CJS_Object* pJSObject);
15 ~console() override;
43 JS_STATIC_METHOD(clear, console);
44 JS_STATIC_METHOD(hide, console);
45 JS_STATIC_METHOD(println, console);
46 JS_STATIC_METHOD(show, console);
/external/libmtp/
Dlibmtp.sh.in25 if [ -f /var/run/console/console.lock ]
27 DEVICEOWNER=`cat /var/run/console/console.lock`
28 elif [ -f /var/run/console.lock ]
30 DEVICEOWNER=`cat /var/run/console.lock`
31 elif [ -f /var/lock/console.lock ]
33 DEVICEOWNER=`cat /var/lock/console.lock`
Dlibmtp.sh25 if [ -f /var/run/console/console.lock ]
27 DEVICEOWNER=`cat /var/run/console/console.lock`
28 elif [ -f /var/run/console.lock ]
30 DEVICEOWNER=`cat /var/run/console.lock`
31 elif [ -f /var/lock/console.lock ]
33 DEVICEOWNER=`cat /var/lock/console.lock`
/external/vogar/src/vogar/tasks/
DTaskQueue.java35 private final Console console; field in TaskQueue
44 public TaskQueue(Console console, int maxConcurrentActions) { in TaskQueue() argument
45 this.console = console; in TaskQueue()
67 ExecutorService runners = Threads.threadPerCpuExecutor(console, "TaskQueue"); in runTasks()
86 if (!console.isVerbose()) { in printTasks()
100 console.verbose(message.toString()); in printTasks()
112 console.info(message, task.thrown); in printProblemTasks()
114 console.info(message); in printProblemTasks()
117 if (!console.isVerbose()) { in printProblemTasks()
135 console.verbose(message.toString()); in printProblemTasks()
[all …]
/external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/
Dscan.js22 console.log('App was granted the "documentScan" permission.');
34 console.log('App was not granted the "documentScan" permission.');
35 console.log(chrome.runtime.lastError);
43 console.log('Scan failed: ' + chrome.runtime.lastError.message);
47 console.log('Scan completed with ' + numImages + ' images.');
50 console.log('Scan ' + i + ' data length ' +
52 console.log('URL is ' + urlData);
/external/vogar/src/vogar/
DDriver.java73 run.console.info("Nothing to do."); in buildAndRun()
77 run.console.info("Actions: " + actions.size()); in buildAndRun()
118 run.console.info("Printing XML Reports... "); in buildAndRun()
120 run.console.info(numFiles + " XML files written."); in buildAndRun()
130 run.console.summarizeOutcomes(annotatedOutcomes.values()); in buildAndRun()
134 run.console.warn( in buildAndRun()
140 run.console.info(String.format( in buildAndRun()
145 run.console.info(String.format("Outcomes: %s. All successful. Took %s.", in buildAndRun()
209 new ActionFinder(run.console, actions, outcomes).findActions(file); in filesToActions()
215 run.console.verbose("skipped " + earlyFailure.getName()); in addEarlyResult()
[all …]
/external/vogar/test/vogar/android/
DAbstractModeTest.java47 @Mock protected Console console; field in AbstractModeTest
68 mkdir = new Mkdir(console); in setUp()
69 rm = new Rm(console); in setUp()
71 androidSdk = new AndroidSdk(console, mkdir, in setUp()
73 new HostFileCache(console, mkdir)); in setUp()
83 run = new Run(vogar, false, console, mkdir, androidSdk, new Rm(console), target, in setUp()
/external/lzma/CPP/7zip/UI/Console/
DUserInputUtils.cpp61 HANDLE console = GetStdHandle(STD_INPUT_HANDLE); in GetPassword() local
64 if (console != INVALID_HANDLE_VALUE && console != 0) in GetPassword()
65 if (GetConsoleMode(console, &mode)) in GetPassword()
66 wasChanged = (SetConsoleMode(console, mode & ~ENABLE_ECHO_INPUT) != 0); in GetPassword()
69 SetConsoleMode(console, mode); in GetPassword()
/external/guice/extensions/persist/test/
Dlog4j.properties1 log4j.rootLogger=warn, console
3 log4j.appender.console=org.apache.log4j.ConsoleAppender
4 log4j.appender.console.Target=System.out
5 log4j.appender.console.layout=org.apache.log4j.PatternLayout
6 log4j.appender.console.layout.ConversionPattern=%p [%c{1}] - %m %n
/external/autotest/client/deps/graphics/graphics_test_extension/
Dbackground.js16 console.log("Background got message: " + message.method);
20 console.log("Create window.");
24 console.log("Set window " + sender.tab.windowId + " to fullscreen.");
27 console.log("Update window " + sender.tab.windowId + ": " +
31 console.log("Move window " + sender.tab.windowId +
43 console.log('Cannot get internal display width.');
/external/autotest/server/site_tests/firmware_PDPowerSwap/
Dfirmware_PDPowerSwap.py46 def _send_power_swap_get_reply(self, console, port): argument
59 console.enable_pd_console_debug()
61 m = console.send_pd_command_get_output(cmd, ['RECV\s([\w]+)'])
62 ctrl_msg = int(m[0][1], 16) & console.PD_CONTROL_MSG_MASK
63 console.disable_pd_console_debug()
81 console = self.plankton_pd_utils
84 console = self.dut_pd_utils
87 self._send_power_swap_get_reply(console, port)
/external/webrtc/webrtc/tools/rtcbot/bot/browser/
Dbot.js17 console.log("Getting user media.");
22 console.log("GetUserMedia success.");
29 console.log("Creating peer connection");
42 console.log("Adding local stream.");
45 console.log("Undefined stream!");
102 console.log("Stream " + stream.id + " attached to video element");
112 console.log(id + " is not id for stream.");
/external/autotest/server/site_tests/firmware_PDDataSwap/
Dfirmware_PDDataSwap.py96 def _get_data_role(self, console, port): argument
104 role = console.get_pd_role(port)
143 def _send_data_swap_get_reply(self, console, port): argument
156 console.enable_pd_console_debug()
158 m = console.send_pd_command_get_output(cmd, ['RECV\s([\w]+)'])
159 ctrl_msg = int(m[0][1], 16) & console.PD_CONTROL_MSG_MASK
160 console.disable_pd_console_debug()
188 console = self.dut_pd_utils
196 console = self.plankton_pd_utils
197 ctrl = self._send_data_swap_get_reply(console, self.PLANKTON_PORT)
/external/chromium-trace/catapult/third_party/vinn/vinn/test_data/
Dconsole_time_test.js16 console.timeEnd("AA");
21 console.time("AA");
22 console.timeEnd("AA");
24 console.timeEnd("AA");
/external/webrtc/webrtc/tools/loopback_test/
Dadapter.js26 console.log((performance.now() / 1000).toFixed(3) + ": " + text);
41 console.log("This appears to be Firefox");
112 console.log("Attaching media stream");
118 console.log("Reattaching media stream");
136 console.log("This appears to be Chrome");
202 console.log('Error attaching stream to element.');
210 console.log("Browser does not appear to be WebRTC-capable");
/external/autotest/client/site_tests/video_WebRtcMediaRecorder/
Dmediarecorder_test_utils.js10 console.log('Waiting for ', duration.toString(), 'msec');
13 console.log('Done waiting');
22 console.log('Waiting for', description.toString());
27 console.log('Still waiting for satisfaction of ' +
/external/autotest/client/samples/
Dcontrol.interactive_console3 NAME = "Sample - Autotest console"
12 "ipython"), you'll get a snazzy IPython console with readline and completion
13 and all that. Otherwise you'll get a simple python console.
21 ipshell = IPython.Shell.IPShellEmbed(argv=[], banner='autotest console')
25 code.interact('autotest console', raw_input)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.equinox.p2.console_1.0.200.v20100601.jar ... org/eclipse/equinox/internal/p2/console/ org/eclipse/equinox/internal/p2
/external/webrtc/webrtc/tools/rtcbot/
Dmain.js76 console.log("Running test: " + testname);
80 console.log("Unknown test: " + testname);
85 console.log('Run as:\n $ '
88 console.log('These are the existent ones:');
90 console.log(' ' + testname);

12345678910>>...20