/hardware/qcom/display/msm8994/libqservice/ |
IQClient.cpp | 47 virtual status_t notifyCallback(uint32_t command, 53 data.writeInt32(command); 72 uint32_t command = data.readInt32(); local 73 notifyCallback(command, &data, reply);
|
/libcore/luni/src/main/java/java/lang/ |
Compiler.java | 32 * Executes an operation according to the specified command object. This 38 * the command object for the JIT compiler. 39 * @return the result of executing command or {@code null}. 41 public static Object command(Object cmd) { method in class:Compiler
|
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/ |
MockExecutor.java | 55 Runnable command = mQueue.removeFirst(); local 56 command.run();
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/ |
InvocationRecord.java | 16 package org.mockftpserver.core.command;
29 * Represents information about a single FTP Command invocation. Manages and provides access to
30 * the Command, the host address (<code>InetAddress</code>) of the client that submitted the
31 * Command and the timestamp of the Command submission.
45 private Command command;
field in class:InvocationRecord 54 * @param command - the Command
57 public InvocationRecord(Command command, InetAddress clientHost) { [all...] |
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/ |
AppeCommandHandlerTest.java | 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.*;
19 import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
34 * @see org.mockftpserver.core.command.AbstractCommandHandlerTestCase#setUp()
56 Command command = new Command(CommandNames.APPE, array(FILENAME1));
local 57 commandHandler.handleCommand(command, session);
|
StorCommandHandlerTest.java | 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.*;
19 import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
34 * @see org.mockftpserver.core.command.AbstractCommandHandlerTestCase#setUp()
56 Command command = new Command(CommandNames.STOR, array(FILENAME1));
local 57 commandHandler.handleCommand(command, session);
|
StouCommandHandlerTest.java | 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
19 import org.mockftpserver.core.command.Command;
20 import org.mockftpserver.core.command.CommandNames;
21 import org.mockftpserver.core.command.ReplyCodes;
36 * @see org.mockftpserver.core.command.AbstractCommandHandlerTestCase#setUp()
59 Command command = new Command(CommandNames.STOU, array(FILENAME1)); local [all...] |
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/ |
InvocationRecord.java | 16 package org.mockftpserver.core.command;
29 * Represents information about a single FTP Command invocation. Manages and provides access to
30 * the Command, the host address (<code>InetAddress</code>) of the client that submitted the
31 * Command and the timestamp of the Command submission.
46 private Command command;
field in class:InvocationRecord 54 * @param command - the Command
57 public InvocationRecord(Command command, InetAddress clientHost) { [all...] |
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/ |
AppeCommandHandlerTest.java | 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.CommandNames;
20 import org.mockftpserver.core.command.ReplyCodes;
21 import org.mockftpserver.stub.command.AppeCommandHandler;
37 * @see org.mockftpserver.stub.command.AbstractCommandHandlerTest#setUp()
59 Command command = new Command(CommandNames.APPE, array(FILENAME1)); local [all...] |
StorCommandHandlerTest.java | 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.CommandNames;
20 import org.mockftpserver.core.command.ReplyCodes;
21 import org.mockftpserver.stub.command.StorCommandHandler;
37 * @see org.mockftpserver.stub.command.AbstractCommandHandlerTest#setUp()
59 Command command = new Command(CommandNames.STOR, array(FILENAME1)); local [all...] |
StouCommandHandlerTest.java | 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.CommandNames;
20 import org.mockftpserver.core.command.ReplyCodes;
21 import org.mockftpserver.stub.command.StouCommandHandler;
37 * @see org.mockftpserver.stub.command.AbstractCommandHandlerTest#setUp()
60 Command command = new Command(CommandNames.STOU, array(FILENAME1)); local [all...] |
/art/runtime/ |
utils_test.cc | 353 std::vector<std::string> command; local 356 command.push_back(android_root + "/bin/id"); 358 command.push_back("/usr/bin/id"); 363 EXPECT_TRUE(Exec(command, &error_msg)); 372 std::vector<std::string> command; local 373 command.push_back("bogus"); 377 EXPECT_FALSE(Exec(command, &error_msg));
|
/bionic/libc/kernel/uapi/linux/usb/ |
f_mtp.h | 29 uint16_t command; member in struct:mtp_file_range
|
/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/command/ |
CompatibilityConsole.java | 17 package com.android.compatibility.common.tradefed.command; 19 import com.android.tradefed.command.Console;
|
/cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/ |
MixedProfileOwnerTest.java | 69 String command = "am start -W --user 0 " + DEVICE_ADMIN_PKG + "/" local 71 getDevice().executeShellCommand(command);
|
/cts/libs/deviceutil/src/android/cts/util/ |
LocationUtils.java | 29 StringBuilder command = new StringBuilder(); local 30 command.append("appops set "); 31 command.append(instrumentation.getContext().getPackageName()); 32 command.append(" android:mock_location "); 33 command.append(enable ? "allow" : "deny"); 35 SystemUtil.runShellCommand(instrumentation, command.toString()); 37 Log.e(TAG, "Error managing mock location app. Command: " + command, e);
|
/cts/suite/audio_quality/executable/src/ |
main.cpp | 44 android::String8 command = android::String8::format("cd %s;zip -r ../%s.zip *", local 46 fprintf(stderr, "\n\nexecuting %s\n", command.string()); 47 if (system(command.string()) == -1) { 48 fprintf(stderr, "cannot create zip file with command %s\n", command.string());
|
/cts/suite/audio_quality/lib/src/ |
SimpleScriptExec.cpp | 70 android::String8 command; local 71 command.appendFormat("%s %s %s", PYTHON_PATH, script.string(), param.string()); 76 if ( !(fpipe = (FILE*)popen(command.string(),"r")) ) {
|
/cts/tests/tests/telephony2/src/android/telephony2/cts/ |
PhoneNumberTest.java | 32 StringBuilder command = new StringBuilder(); local 33 command.append("appops set "); 34 command.append(getInstrumentation().getContext().getPackageName()); 35 command.append(" WRITE_SMS "); 36 command.append(setToSmsApp ? "allow" : "default"); 39 .executeShellCommand(command.toString());
|
/dalvik/dx/src/com/android/dx/command/findusages/ |
Main.java | 17 package com.android.dx.command.findusages;
|
/dalvik/dx/src/com/android/dx/command/grep/ |
Main.java | 17 package com.android.dx.command.grep;
|
/development/ndk/platforms/android-21/include/linux/usb/ |
f_mtp.h | 29 uint16_t command; member in struct:mtp_file_range
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/ |
InvokeMethodWithSuspensionTest.java | 30 * JDWP unit test for ClassType.InvokeCommand command with a thread suspension. 40 CommandPacket command = new CommandPacket( local 43 command.setNextValueAsClassID(classID); 44 command.setNextValueAsThreadID(threadId); 45 command.setNextValueAsMethodID(methodId); 46 command.setNextValueAsInt(0); 47 command.setNextValueAsInt(invoke_options); 48 return command;
|
NewInstanceWithSuspensionTest.java | 29 * JDWP unit test for ClassType.NewInstance command with a thread suspension. 39 CommandPacket command = new CommandPacket( local 42 command.setNextValueAsClassID(classID); 43 command.setNextValueAsThreadID(threadId); 44 command.setNextValueAsMethodID(methodId); 45 command.setNextValueAsInt(0); 46 command.setNextValueAsInt(invoke_options); 47 return command;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
AbstractApplication.java | 56 * Looks for interesting command line arguments. 62 * From a command line list, get the array of arguments of a given parameter. 71 if (index == commands.size()) // if this is the last command 74 while (index < commands.size()) { // while not the last command 75 String command = (String) commands.get(index); local 76 if (command.startsWith("-")) // is it a new parameter? 78 args.add(command);
|