Searched defs:close (Results 1 - 25 of 37) sorted by relevance

12

/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
H A DSyncProgressHelper.java43 /** close the {@link SyncService} */
44 void close(); method in interface:SyncProgressHelper.SyncRunnable
73 runnable.close();
/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/device/
H A DDeviceConnection.java82 public void close() { method in class:DeviceConnection
85 mIn.close();
91 mOut.close();
96 mSocketChannel.close();
/sdk/lint/cli/src/com/android/tools/lint/
H A DTextReporter.java44 * @param close whether the writer should be closed when done
46 public TextReporter(Main client, Writer writer, boolean close) { argument
49 mClose = close;
175 mWriter.close();
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/io/
H A DNonClosingInputStream.java28 * this makes it possible to ignore close operations or have them perform a
39 * The behavior of {@link NonClosingInputStream#close()} is to close the
44 * The behavior of {@link NonClosingInputStream#close()} is to ignore the
45 * close request and do nothing.
49 * The behavior of {@link NonClosingInputStream#close()} is to call
88 * Performs the requested {@code close()} operation, depending on the current
92 public void close() throws IOException { method in class:NonClosingInputStream
100 mInputStream.close();
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
H A DTraceCommandWriter.java53 public void close() { method in class:TraceCommandWriter
55 mStream.close();
/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
H A DSdkLocationChooserDialog.java112 public boolean close() { method in class:SdkLocationChooserDialog
114 return super.close();
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/templates/
H A DTemplatedInputStream.java82 public void close() throws IOException { method in class:TemplatedInputStream
83 super.close();
84 mIn.close();
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
H A DUpdaterBaseDialog.java56 * close button at the bottom of the dialog.
68 Button close = new Button(getShell(), SWT.PUSH);
69 close.setText("Close");
70 GridDataBuilder.create(close).hFill().vBottom();
71 close.addSelectionListener(new SelectionAdapter() {
74 close();
85 protected void close() { method in class:UpdaterBaseDialog
86 super.close();
H A DSettingsDialog.java201 protected void close() { method in class:SettingsDialog
204 super.close();
H A DSdkUpdaterChooserDialog.java351 public boolean close() { method in class:SdkUpdaterChooserDialog
353 return super.close();
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
H A DSocket.java178 public boolean close() { method in class:Socket
192 socket.close();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
H A DInputDensityDialog.java96 public boolean close() { method in class:InputDensityDialog
106 return super.close();
H A DLintListDialog.java85 public boolean close() { method in class:LintListDialog
87 return super.close();
224 close();
299 close();
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/ui/
H A DSwtBaseDialog.java190 * Saves the dialog size and close the dialog.
194 * in which case the dialog will close as soon as possible.
196 protected void close() { method in class:SwtBaseDialog
199 getShell().close();
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
H A DDebugger.java147 newChan.close();
165 mChannel.close();
174 Log.w("ddms", "Failed to close data " + this);
182 synchronized void close() { method in class:Debugger
185 mListenChannel.close();
190 Log.w("ddms", "Failed to close listener " + this);
H A DSyncService.java177 mChannel.close();
184 mChannel.close();
195 mChannel.close();
211 public void close() { method in class:SyncService
214 mChannel.close();
572 fos.close();
684 // close the local file
686 fis.close();
H A DClient.java523 close(true /* notify */);
683 // mark it as bad, close the socket, and don't retry
685 close(true /* notify */);
796 * with us, close that too.
800 * actually lets them go and allows the file descriptors to close.
804 void close(boolean notify) { method in class:Client
811 mChan.close();
816 mDebugger.close();
821 Log.w("ddms", "failed to close " + this);
/sdk/chimpchat/src/com/android/chimpchat/
H A DChimpManager.java73 close();
242 public void close() { method in class:ChimpManager
244 monkeySocket.close();
246 LOG.log(Level.SEVERE, "Unable to close monkeySocket", e);
249 monkeyReader.close();
251 LOG.log(Level.SEVERE, "Unable to close monkeyReader", e);
254 monkeyWriter.close();
256 LOG.log(Level.SEVERE, "Unable to close monkeyWriter", e);
/sdk/emulator/qtools/
H A Ddmtrace.cpp62 void DmTrace::close() function in class:DmTrace
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/build/
H A DSignedJarBuilder.java194 // close the file stream used to read the file
195 fis.close();
244 zis.close();
253 public void close() throws IOException, GeneralSecurityException { method in class:SignedJarBuilder
270 mOutputJar.close();
276 * This does nothing if {@link #close()} was called successfully.
281 mOutputJar.close();
309 // close the entry for this file
/sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/io/
H A DMockFileOp.java381 fis.close();
407 fos.close();
451 public void close() throws IOException { method in class:MockFileOp.StringOutputStream
452 super.close();
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ui/
H A DAddonSitesDialog.java124 // placeholder for aligning close button
298 protected void close() { method in class:AddonSitesDialog
304 super.close();
H A DLogWindow.java83 * For testing only. See {@link #open()} and {@link #close()} for normal usage.
94 close();
101 * Caller should use {@link #close()} later.
117 public void close() { method in class:LogWindow
120 mShell.close();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
H A DProjectState.java91 public void close() { method in class:ProjectState.LibraryState
/sdk/emulator/qemud/
H A Dqemud.c69 * chooses to close the connection.
283 * this does *not* close the file descriptor.
311 * HOOK_CLOSING is used to delay-close monitored
361 close(l->epoll_fd);
703 CloseFunc close; member in struct:__anon48
726 if (r->close) {
727 r->close( r->user );
728 r->close = NULL;
810 /* close a FDHandler (and free it). Note that this will not
841 close(
[all...]

Completed in 775 milliseconds

12