Searched defs:cmds (Results 1 - 4 of 4) sorted by relevance

/frameworks/native/cmds/installd/
H A Dinstalld.c164 struct cmdinfo cmds[] = { variable in typeref:struct:cmdinfo
261 for (i = 0; i < sizeof(cmds) / sizeof(cmds[0]); i++) {
262 if (!strcmp(cmds[i].name,arg[0])) {
263 if (n != cmds[i].numargs) {
265 cmds[i].name, cmds[i].numargs, n);
267 ret = cmds[i].func(arg + 1, reply);
/frameworks/base/core/java/android/os/
H A DProcess.java1102 public static final native int[] getPidsForCommands(String[] cmds); argument
/frameworks/native/libs/binder/
H A DIPCThreadState.cpp832 const void* cmds = (const void*)bwr.write_buffer; local
833 const void* end = ((const uint8_t*)cmds)+bwr.write_size;
834 alog << HexDump(cmds, bwr.write_size) << endl;
835 while (cmds < end) cmds = printCommand(alog, cmds);
889 const void* cmds = mIn.data(); local
891 alog << HexDump(cmds, mIn.dataSize()) << endl;
892 while (cmds < end) cmds
[all...]
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DPackageManagerTests.java624 private void assertPermissions(String[] cmds) { argument
630 while (i < cmds.length) {
631 String cmd = cmds[i++];
633 pkg = cmds[i++];
643 mode = cmds[i++];

Completed in 283 milliseconds