HomeSort by relevance Sort by last modified time
    Searched refs:CLOSE (Results 1 - 25 of 50) sorted by null

1 2

  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/io/
NonClosingInputStream.java 28 * this makes it possible to ignore close operations or have them perform a
35 private CloseBehavior mCloseBehavior = CloseBehavior.CLOSE;
39 * The behavior of {@link NonClosingInputStream#close()} is to close the
42 CLOSE,
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
    [all...]
  /external/chromium/base/
file_descriptor_shuffle_unittest.cc 22 CLOSE,
61 void Close(int fd) {
62 actions_.push_back(Action(Action::CLOSE, fd));
128 EXPECT_TRUE(tracer.actions()[1] == Action(Action::CLOSE, 0));
140 EXPECT_TRUE(tracer.actions()[1] == Action(Action::CLOSE, 10));
155 EXPECT_TRUE(tracer.actions()[3] == Action(Action::CLOSE, kDuplicateBase));
170 EXPECT_TRUE(tracer.actions()[3] == Action(Action::CLOSE, kDuplicateBase));
185 EXPECT_TRUE(tracer.actions()[3] == Action(Action::CLOSE, kDuplicateBase));
200 EXPECT_TRUE(tracer.actions()[3] == Action(Action::CLOSE, kDuplicateBase));
225 EXPECT_TRUE(tracer.actions()[2] == Action(Action::CLOSE, 0))
    [all...]
  /external/icu4c/i18n/
funcrepl.cpp 21 static const UChar CLOSE[] = {32,41,0}; // " )"
102 rule.append(CLOSE);
  /hardware/ti/wlan/wl1271/stad/src/Data_link/
rx.h 49 #define DEF_RX_PORT_STATUS CLOSE
txCtrl.h 52 #define DEF_TX_PORT_STATUS CLOSE
rx.c 198 /* port status close */
199 pRxData->rxData_dispatchBuffer[CLOSE][DATA_DATA_PACKET] = &rxData_discardPacket; /* data */
200 pRxData->rxData_dispatchBuffer[CLOSE][DATA_EAPOL_PACKET] = &rxData_discardPacket; /* eapol */
201 pRxData->rxData_dispatchBuffer[CLOSE][DATA_IAPP_PACKET] = &rxData_discardPacket; /* Iapp */
202 pRxData->rxData_dispatchBuffer[CLOSE][DATA_VLAN_PACKET] = &rxData_discardPacketVlan; /* VLAN */
664 /* if we're in the midst of building a field pattern, we need to close in case */
743 /* close the last field pattern if needed */
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapConstants.java 41 public static final String CLOSE = "CLOSE";
  /frameworks/base/core/java/android/webkit/
WebIconDatabaseClassic.java 43 static final int CLOSE = 1;
93 case CLOSE:
162 if (c != null) c.close();
189 public void close() { method in class:WebIconDatabaseClassic
191 Message.obtain(null, EventHandler.CLOSE));
WebSettings.java 82 * <li>CLOSE makes 100% looking like in 120dpi</li>
88 CLOSE(75); // 120dpi
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
maketab.c 79 { CLOSE, "closefile", "closefile" },
awkgram.y 55 %token <i> ARG BLTIN BREAK CLOSE CONTINUE DELETE DO EXIT FOR FUNC
82 %left ARG BLTIN BREAK CALL CLOSE CONTINUE DELETE DO EXIT FOR FUNC
367 | CLOSE term { $$ = op1(CLOSE, $2); }
lex.c 52 { "close", CLOSE, CLOSE },
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactEditorActivity.java 135 intent.getIntExtra(ContactEditorFragment.SAVE_MODE_EXTRA_KEY, SaveMode.CLOSE),
154 mFragment.save(SaveMode.CLOSE);
  /frameworks/av/media/libmedia/
IMediaRecorder.cpp 35 CLOSE,
266 status_t close() function in class:android::BpMediaRecorder
268 ALOGV("close");
271 remote()->transact(CLOSE, data, &reply);
305 case CLOSE: {
306 ALOGV("CLOSE");
308 reply->writeInt32(close());
394 ::close(fd);
  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
connIbss.c 412 param.content.rxDataPortStatus = CLOSE;
415 /* Update TxMgmtQueue SM to close Tx path. */
446 param.content.rxDataPortStatus = CLOSE;
449 /* Update TxMgmtQueue SM to close Tx path. */
connInfra.c 392 pParam->content.rxDataPortStatus = CLOSE;
395 /* Update TxMgmtQueue SM to close Tx path. */
478 pParam->content.rxDataPortStatus = CLOSE;
484 /* Update TxMgmtQueue SM to close Tx path for all except Mgmt packets. */
517 pParam->content.rxDataPortStatus = CLOSE;
521 /* Update TxMgmtQueue SM to close Tx path for all except Mgmt packets. */
559 pParam->content.rxDataPortStatus = CLOSE;
563 /* Update TxMgmtQueue SM to close Tx path for all except Mgmt packets. */
    [all...]
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
CaptureDisplay.java 92 sShell = new Shell(Display.getDefault(), SWT.CLOSE | SWT.TITLE);
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java 136 * Close the editor after saving
138 public static final int CLOSE = 0;
180 * - After Save/Close
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
SdkStats.java 269 * Closes the stream, ignore any exception from InputStream.close().
270 * If the stream is a NonClosingInputStream, sets it to CloseBehavior.CLOSE first.
275 ((NonClosingInputStream) is).setCloseBehavior(CloseBehavior.CLOSE);
278 is.close();
466 xsdStream.close();
AddonsListFetcher.java 284 * Closes the stream, ignore any exception from InputStream.close().
285 * If the stream is a NonClosingInputStream, sets it to CloseBehavior.CLOSE first.
290 ((NonClosingInputStream) is).setCloseBehavior(CloseBehavior.CLOSE);
293 is.close();
  /external/qemu/android/
hw-events.h 253 KEY_CODE(CLOSE ,206) \
  /hardware/ti/wlan/wl1271/stad/Export_Inc/
paramOut.h 199 CLOSE = 0,
    [all...]
  /external/chromium/chrome/browser/tabs/
tab_strip_model_unittest.cc 274 CLOSE,
360 states_.push_back(new State(contents, index, CLOSE));
496 // Let's test nothing happens when the delegate veto the close.
502 // Now let's close for real.
508 State s1(contents3, 2, MockTabStripModelObserver::CLOSE);
793 // Now close this contents. The selection should move to the opener contents.
844 // Note that we use Detach instead of Close throughout this test to avoid
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
AddTranslationDialog.java 124 setShellStyle(SWT.CLOSE | SWT.RESIZE | SWT.TITLE);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/sources/
SdkSource.java 646 * Closes the stream, ignore any exception from InputStream.close().
647 * If the stream is a NonClosingInputStream, sets it to CloseBehavior.CLOSE first.
652 ((NonClosingInputStream) is).setCloseBehavior(CloseBehavior.CLOSE);
655 is.close();
    [all...]

Completed in 1369 milliseconds

1 2