Searched refs:cmds (Results 1 - 7 of 7) sorted by relevance

/frameworks/native/opengl/tools/glgen2/
H A Dglgen.py131 self.cmds = []
138 self.cmds.append({'rtype': rtype, 'name': fname, 'params': params})
174 self.cmds.sort(key=itemgetter('name'))
175 cmds = []
176 for cmd in self.cmds:
177 if len(cmds) == 0 or cmd != cmds[-1]:
178 cmds.append(cmd)
179 self.cmds = cmds
[all...]
/frameworks/native/cmds/installd/tests/
H A DAndroid.mk21 frameworks/native/cmds/installd
/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/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/cmds/uiautomator/library/
H A DAndroid.mk73 uiautomator_api_dir := frameworks/base/cmds/uiautomator/api
/frameworks/base/core/java/android/os/
H A DProcess.java1102 public static final native int[] getPidsForCommands(String[] cmds); argument
/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 916 milliseconds