Home
last modified time | relevance | path

Searched defs:client (Results 1 – 25 of 49) sorted by relevance

12

/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
DHandleProfiling.java54 public void clientReady(Client client) throws IOException {} in clientReady()
60 public void clientDisconnected(Client client) {} in clientDisconnected()
66 public void handleChunk(Client client, int type, ByteBuffer data, in handleChunk()
96 public static void sendMPRS(Client client, String fileName, int bufferSize, in sendMPRS()
124 public static void sendMPRE(Client client) throws IOException { in sendMPRE()
140 private void handleMPRE(Client client, ByteBuffer data) { in handleMPRE()
176 public static void sendMPSS(Client client, int bufferSize, in sendMPSS()
199 public static void sendMPSE(Client client) throws IOException { in sendMPSE()
215 private void handleMPSE(Client client, ByteBuffer data) { in handleMPSE()
233 public static void sendMPRQ(Client client) throws IOException { in sendMPRQ()
[all …]
DHandleThread.java58 public void clientReady(Client client) throws IOException { in clientReady()
68 public void clientDisconnected(Client client) {} in clientDisconnected()
74 public void handleChunk(Client client, int type, ByteBuffer data, boolean isReply, int msgId) { in handleChunk()
99 private void handleTHCR(Client client, ByteBuffer data) { in handleTHCR()
116 private void handleTHDE(Client client, ByteBuffer data) { in handleTHDE()
140 private void handleTHST(Client client, ByteBuffer data) { in handleTHST()
195 private void handleTHNM(Client client, ByteBuffer data) { in handleTHNM()
218 private void handleSTKL(Client client, ByteBuffer data) { in handleSTKL()
267 public static void sendTHEN(Client client, boolean enable) in sendTHEN()
290 public static void sendSTKL(Client client, int threadId) in sendSTKL()
[all …]
DHandleHello.java45 public void clientReady(Client client) throws IOException { in clientReady()
53 public void clientDisconnected(Client client) { in clientDisconnected()
63 public static void sendHelloCommands(Client client, int serverProtocolVersion) in sendHelloCommands()
74 public void handleChunk(Client client, int type, ByteBuffer data, boolean isReply, int msgId) { in handleChunk()
91 private static void handleHELO(Client client, ByteBuffer data) { in handleHELO()
130 public static void sendHELO(Client client, int serverProtocolVersion) in sendHELO()
148 private static void handleFEAT(Client client, ByteBuffer data) { in handleFEAT()
165 public static void sendFEAT(Client client) throws IOException { in sendFEAT()
DHandleHeap.java76 public void clientReady(Client client) throws IOException { in clientReady()
87 public void clientDisconnected(Client client) {} in clientDisconnected()
93 public void handleChunk(Client client, int type, ByteBuffer data, boolean isReply, int msgId) { in handleChunk()
120 private void handleHPIF(Client client, ByteBuffer data) { in handleHPIF()
148 public static void sendHPIF(Client client, int when) throws IOException { in sendHPIF()
163 private void handleHPST(Client client, ByteBuffer data) { in handleHPST()
174 private void handleHPEN(Client client, ByteBuffer data) { in handleHPEN()
186 private void handleHPSG(Client client, ByteBuffer data) { in handleHPSG()
198 public static void sendHPSG(Client client, int when, int what) in sendHPSG()
217 public static void sendHPGC(Client client) in sendHPGC()
[all …]
DHandleTest.java47 public void clientReady(Client client) throws IOException {} in clientReady()
53 public void clientDisconnected(Client client) {} in clientDisconnected()
59 public void handleChunk(Client client, int type, ByteBuffer data, boolean isReply, int msgId) { in handleChunk()
73 private void handleTEST(Client client, ByteBuffer data) in handleTEST()
DHandleWait.java48 public void clientReady(Client client) throws IOException {} in clientReady()
54 public void clientDisconnected(Client client) {} in clientDisconnected()
60 public void handleChunk(Client client, int type, ByteBuffer data, boolean isReply, int msgId) { in handleChunk()
75 private static void handleWAIT(Client client, ByteBuffer data) { in handleWAIT()
DHandleExit.java43 public void clientReady(Client client) throws IOException {} in clientReady()
49 public void clientDisconnected(Client client) {} in clientDisconnected()
55 public void handleChunk(Client client, int type, ByteBuffer data, boolean isReply, int msgId) { in handleChunk()
62 public static void sendEXIT(Client client, int status) in sendEXIT()
DHandleAppName.java45 public void clientReady(Client client) throws IOException {} in clientReady()
51 public void clientDisconnected(Client client) {} in clientDisconnected()
57 public void handleChunk(Client client, int type, ByteBuffer data, in handleChunk()
73 private static void handleAPNM(Client client, ByteBuffer data) { in handleAPNM()
DHandleNativeHeap.java56 public void clientReady(Client client) throws IOException {} in clientReady()
62 public void clientDisconnected(Client client) {} in clientDisconnected()
68 public void handleChunk(Client client, int type, ByteBuffer data, boolean isReply, int msgId) { in handleChunk()
92 public static void sendNHGT(Client client) throws IOException { in sendNHGT()
119 private void handleNHGT(Client client, ByteBuffer data) { in handleNHGT()
188 private void handleNHSG(Client client, ByteBuffer data) { in handleNHSG()
DChunkHandler.java46 abstract void clientReady(Client client) throws IOException; in clientReady()
52 abstract void clientDisconnected(Client client); in clientDisconnected()
65 abstract void handleChunk(Client client, int type, in handleChunk()
72 protected void handleUnknownChunk(Client client, int type, in handleUnknownChunk()
199 protected static Client checkDebuggerPortForAppName(Client client, String appName) { in checkDebuggerPortForAppName()
DMonitorThread.java302 Client client = (Client)key.attachment(); in processClientActivity() local
379 private void callHandler(Client client, JdwpPacket packet, in callHandler()
425 synchronized void dropClient(Client client, boolean notify) { in dropClient()
624 synchronized void addClient(Client client) { in addClient()
661 private void broadcast(int event, Client client) { in broadcast()
DClientData.java303 void onSuccess(String remoteFilePath, Client client); in onSuccess()
310 void onSuccess(byte[] data, Client client); in onSuccess()
317 void onEndFailure(Client client, String message); in onEndFailure()
329 void onSuccess(String remoteFilePath, Client client); in onSuccess()
336 void onSuccess(byte[] data, Client client); in onSuccess()
343 void onStartFailure(Client client, String message); in onStartFailure()
350 void onEndFailure(Client client, String message); in onEndFailure()
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/handler/
DMethodProfilingHandler.java58 public void onStartFailure(final Client client, final String message) { in onStartFailure()
67 public void onEndFailure(final Client client, final String message) { in onEndFailure()
76 public void onSuccess(final String remoteFilePath, final Client client) { in onSuccess()
108 public void onSuccess(byte[] data, final Client client) { in onSuccess()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DProjectLintConfiguration.java42 ProjectLintConfiguration(LintClient client, Project project, in ProjectLintConfiguration()
48 private static ProjectLintConfiguration create(LintClient client, IProject project, in create()
55 public static ProjectLintConfiguration get(LintClient client, IProject project, in get()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/lint/
DProjectLintConfigurationTest.java40 LintClient client = new TestClient(); in testBasic() local
72 LintClient client = new TestClient(); in testInheritance() local
130 LintClient client = new TestClient(); in testBulkEditing() local
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
DDeviceView.java114 public void onEndFailure(final Client client, final String message) { in onEndFailure()
135 public void onSuccess(final String remoteFilePath, final Client client) { in onSuccess()
205 public void onSuccess(final byte[] data, final Client client) { in onSuccess()
632 public void clientChanged(final Client client, int changeMask) { in clientChanged()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/widgets/
DImageCanvas.java106 Rectangle client = getClientArea(); in updateScrollBars() local
185 Rectangle client = getClientArea(); in paintCanvas() local
/sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/
DDefaultConfiguration.java92 protected DefaultConfiguration( in DefaultConfiguration()
103 protected DefaultConfiguration( in DefaultConfiguration()
119 public static DefaultConfiguration create( in create()
136 public static DefaultConfiguration create(@NonNull LintClient client, @NonNull File lintFile) { in create()
/sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/
DLintCliXmlParserTest.java71 LintClient client = new TestClient(); in test() local
145 LintClient client = new TestClient(); in testLineEndings() local
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
DThreadPanel.java399 public void clientChanged(final Client client, int changeMask) { in clientChanged()
447 Client client = getCurrentClient(); in clientSelected() local
487 Client client = getCurrentClient(); in updateThreadStackCall() local
DDevicePanel.java174 Client client = (Client)element; in getColumnImage() local
243 Client client = (Client)element; in getColumnText() local
469 Client client = mCurrentClient; in killSelectedClient() local
678 public void clientChanged(final Client client, final int changeMask) { in clientChanged()
798 Client client = null; in notifyListeners() local
DAllocationPanel.java472 public void clientChanged(final Client client, int changeMask) { in clientChanged()
520 Client client = getCurrentClient(); in clientSelected() local
540 Client client = getCurrentClient(); in updateAllocationStackCall() local
/sdk/emulator/tests/
Dtest-qemud-pipes.c60 int sock, client; in main() local
/sdk/lint/cli/src/com/android/tools/lint/
DTextReporter.java43 public TextReporter(Main client, Writer writer) { in TextReporter()
/sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
DApiLookup.java106 public static ApiLookup get(LintClient client) { in get()
143 public static ApiLookup get(LintClient client, File xmlFile) { in get()
183 private static boolean createCache(LintClient client, File xmlFile, File binaryData) { in createCache()
209 private ApiLookup( in ApiLookup()

12