Home
last modified time | relevance | path

Searched refs:groupID (Results 1 – 6 of 6) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
DChildrenTest.java67 long groupID; in testChildren001() local
79 groupID = reply.getNextValueAsThreadGroupID(); in testChildren001()
80 logWriter.println("==> groupID = " + groupID); in testChildren001()
86 packet.setNextValueAsThreadID(groupID); in testChildren001()
91 + debuggeeWrapper.vmMirror.getThreadGroupName(groupID) in testChildren001()
123 groupID = reply.getNextValueAsThreadGroupID(); in testChildren001()
124 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID); in testChildren001()
126 logWriter.println("\n==> group: groupID = " + groupID + "; groupName = " + groupName); in testChildren001()
186 private void checkCommandError(long groupID, int expectedError) { in checkCommandError() argument
187 logWriter.println("Send ThreadGroupReference.Children command with id " + groupID); in checkCommandError()
[all …]
DParentTest.java63 long groupID; in testParent001() local
75 groupID = reply.getNextValueAsThreadGroupID(); in testParent001()
80 packet.setNextValueAsThreadID(groupID); in testParent001()
85 groupID = reply.getNextValueAsThreadGroupID(); in testParent001()
87 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID); in testParent001()
89 logWriter.println("\tgroupID=" + groupID in testParent001()
151 private void checkCommandError(long groupID, int expectedError) { in checkCommandError() argument
152 logWriter.println("Send ThreadGroupReference.Name command with id " + groupID); in checkCommandError()
157 packet.setNextValueAsThreadGroupID(groupID); in checkCommandError()
DNameTest.java62 long groupID; in testName001() local
74 groupID = reply.getNextValueAsThreadGroupID(); in testName001()
75 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID); in testName001()
79 + "; groupID=" + groupID in testName001()
141 private void checkCommandError(long groupID, int expectedError) { in checkCommandError() argument
142 logWriter.println("Send ThreadGroupReference.Name command with id " + groupID); in checkCommandError()
147 packet.setNextValueAsThreadGroupID(groupID); in checkCommandError()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
DThreadGroupTest.java67 long threadID, groupID; in testThreadGroup001() local
83 groupID = replyThread.getNextValueAsThreadGroupID(); in testThreadGroup001()
85 groupName = debuggeeWrapper.vmMirror.getThreadGroupName(groupID); in testThreadGroup001()
90 + "; groupID=" + groupID in testThreadGroup001()
/external/python/cpython2/Mac/Modules/file/
D_Filemodule.c309 return Py_BuildValue("(llll)", info->userID, info->groupID, info->userAccess, info->mode); in FSCatalogInfo_get_permissions()
315 long groupID; in FSCatalogInfo_set_permissions() local
322 r = PyArg_Parse(v, "(llll)", &userID, &groupID, &userAccess, &mode); in FSCatalogInfo_set_permissions()
327 info->groupID = groupID; in FSCatalogInfo_set_permissions()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DVmMirror.java779 public String getThreadGroupName(long groupID) { in getThreadGroupName() argument
784 commandPacket.setNextValueAsReferenceTypeID(groupID); in getThreadGroupName()