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

1 2

  /libcore/luni/src/main/java/java/util/concurrent/
FutureTask.java 41 * on a "state" field updated via CAS to track completion, along
49 * The run state of this task, initially NEW. The run state
50 * transitions to a terminal state only in methods set,
51 * setException, and cancel. During completion, state may take on
58 * Possible state transitions:
64 private volatile int state; field in class:FutureTask
76 private Object outcome; // non-volatile, protected by state reads/writes
85 * @param s completed state value
108 this.state = NEW; // ensure visibility of callabl
    [all...]
  /packages/apps/Browser/src/com/android/browser/
AutoFillProfileDatabase.java 45 static final String STATE = "state";
66 + Profiles.STATE + " TEXT,"
105 Profiles.STATE,
  /packages/apps/Calendar/src/com/android/calendar/alerts/
DismissAlarmsService.java 46 CalendarAlerts.STATE,
79 selection = CalendarAlerts.STATE + "=" + CalendarAlerts.STATE_FIRED + " AND " +
89 selection = CalendarAlerts.STATE + "=" + CalendarAlerts.STATE_FIRED;
118 selection.append(CalendarAlerts.STATE);
SnoozeAlarmsService.java 35 CalendarAlerts.STATE,
72 String selection = CalendarAlerts.STATE + "=" + CalendarAlerts.STATE_FIRED + " AND " +
AlertActivity.java 67 CalendarAlerts.STATE, // 10
84 private static final String SELECTION = CalendarAlerts.STATE + "=?";
99 String selection = CalendarAlerts.STATE + "=" + CalendarAlerts.STATE_FIRED;
AlertService.java 68 CalendarAlerts.STATE, // 2
93 private static final String ACTIVE_ALERTS_SELECTION = "(" + CalendarAlerts.STATE + "=? OR "
94 + CalendarAlerts.STATE + "=?) AND " + CalendarAlerts.ALARM_TIME + "<=";
104 + CalendarAlerts.STATE + "=?";
259 vals.put(CalendarAlerts.STATE, CalendarAlerts.STATE_DISMISSED);
432 Log.e(TAG, "Illegal state: next notification refresh time found to be in the past.");
653 int state = alertCursor.getInt(ALERT_INDEX_STATE); local
676 .append(" state: ").append(state)
    [all...]
GlobalDismissManager.java 500 String selection = "(" + CalendarAlerts.STATE + "=" +
502 CalendarAlerts.STATE + "=" +
506 values.put(CalendarAlerts.STATE, CalendarAlerts.STATE_DISMISSED);
AlertUtils.java 60 // A flag for using local storage to save alert state instead of the alerts DB table.
213 values.put(CalendarAlerts.STATE, CalendarAlerts.STATE_SCHEDULED);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_MimeWriter.py 47 STATE = '''\
176 Content-Type: multipart/knowbot-state;
267 # Third toplevel body part: state
269 state = toplevel.nextpart()
270 state.addheader("KP-Main-Module", "main")
271 state.startmultipartbody("knowbot-state", "804spam999")
273 # State: a bunch of assignments
275 st = state.nextpart()
278 f.write(STATE)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_MimeWriter.py 47 STATE = '''\
176 Content-Type: multipart/knowbot-state;
267 # Third toplevel body part: state
269 state = toplevel.nextpart()
270 state.addheader("KP-Main-Module", "main")
271 state.startmultipartbody("knowbot-state", "804spam999")
273 # State: a bunch of assignments
275 st = state.nextpart()
278 f.write(STATE)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/
LocationModeTestActivity.java 47 private static final String STATE = "state";
64 mState = savedInstanceState.getInt(STATE, 0);
86 outState.putInt(STATE, mState);
135 * Set the visible state of a test item to passed or failed.
148 * Set the visible state of a test item to waiting.
158 * Advances the state machine.
161 // Advance test state until we find case where it hasn't passed (yet)
195 * Return to the state machine to progress through the tests.
202 * Wait for things to settle before returning to the state machine
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/security/
CAInstallNotificationVerifierActivity.java 45 private static final String STATE = "state";
84 mState = savedInstanceState.getInt(STATE, 0);
101 outState.putInt(STATE, mState);
191 * Return to the state machine to progress through the tests.
198 * Wait for things to settle before returning to the state machine.
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
AttachmentActionHandler.java 127 params.put(AttachmentColumns.STATE, AttachmentState.DOWNLOADING);
138 params.put(AttachmentColumns.STATE, AttachmentState.NOT_SAVED);
145 params.put(AttachmentColumns.STATE, AttachmentState.REDOWNLOADING);
199 if (mAttachment.state == AttachmentState.SAVED && mViewOnFinish) {
274 * keeping any state as member variables in them.
AttachmentProgressDialogFragment.java 96 params.put(AttachmentColumns.STATE, AttachmentState.NOT_SAVED);
  /hardware/ti/omap3/omx/system/src/openmax_il/common/inc/
OMX_TI_Debug.h 131 #define OMX_DBG_DOM_STATE 0x1000ul /* state transitions */
417 #define OMX_PRSTATE0(dbg, format, list...) OMXDBG_PRINT((dbg).out, STATE, 0, (dbg).mask, format, ##list)
418 #define OMX_PRSTATE1(dbg, format, list...) OMXDBG_PRINT((dbg).out, STATE, 1, (dbg).mask, format, ##list)
419 #define OMX_PRSTATE2(dbg, format, list...) OMXDBG_PRINT((dbg).out, STATE, 2, (dbg).mask, format, ##list)
420 #define OMX_PRSTATE3(dbg, format, list...) OMXDBG_PRINT((dbg).out, STATE, 3, (dbg).mask, format, ##list)
421 #define OMX_PRSTATE4(dbg, format, list...) OMXDBG_PRINT((dbg).OMX_DBG_LEVEL4, STATE, 4, (dbg).mask, format, ##list)
422 #define OMX_PRSTATE5(dbg, format, list...) OMXDBG_PRINT((dbg).err, STATE, 5, (dbg).mask, format, ##list)
  /external/mesa3d/src/mesa/program/
program_parse.y 42 static struct asm_symbol *declare_variable(struct asm_parser_state *state,
58 static int yyparse(struct asm_parser_state *state);
62 static void yyerror(struct YYLTYPE *locp, struct asm_parser_state *state,
66 struct asm_parser_state *state);
117 #define YYLEX_PARAM state->scanner
122 %parse-param { struct asm_parser_state *state }
139 gl_state_index state[STATE_LENGTH];
183 %token SCENECOLOR SECONDARY SHININESS SIZE_TOK SPECULAR SPOT STATE
232 %type <state> stateSingleItem stateMultipleItem
233 %type <state> stateMaterialIte
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/
InteractiveVerifierActivity.java 48 private static final String STATE = "state";
133 int savedStateIndex = (savedState == null) ? 0 : savedState.getInt(STATE, 0);
135 Log.i(TAG, "restored state(" + savedStateIndex + "}, status(" + savedStatus + ")");
167 outState.putInt(STATE, stateIndex);
170 Log.i(TAG, "saved state(" + stateIndex + "}, status(" + status + ")");
291 * Return to the state machine to progress through the tests.
299 * Wait for things to settle before returning to the state machine.
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailContentTable.java 67 .add(Voicemails.STATE)
100 .add(Voicemails.STATE)
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Attachment.java 102 * @see AttachmentColumns#STATE
104 public int state; field in class:Attachment
179 state = in.readInt();
200 state = cursor.getInt(cursor.getColumnIndex(AttachmentColumns.STATE));
221 state = srcJson.optInt(AttachmentColumns.STATE);
253 state = AttachmentState.SAVED;
294 state = values.getAsInteger(AttachmentColumns.STATE);
    [all...]
EmlAttachmentProvider.java 265 .add(attachment.state) // state
284 final Integer newState = values.getAsInteger(UIProvider.AttachmentColumns.STATE);
  /frameworks/base/core/java/android/provider/
VoicemailContract.java 48 * to convey its current state to the system. The columns and URIS for
153 * The mail box state of the voicemail. This field is currently not used by the system.
159 public static final String STATE = "state";
161 * Value of {@link #STATE} when the voicemail is in inbox.
166 * Value of {@link #STATE} when the voicemail has been marked as deleted.
171 * Value of {@link #STATE} when the voicemail has marked as undeleted.
381 * The configuration state of the voicemail source.
399 * <p> This state must be used when the source has verified that the current user can be
404 * The data channel state of the voicemail source. This the channel through which the sourc
    [all...]
CalendarContract.java     [all...]
  /external/libnl/lib/route/
neigh.c 48 * - state (rtnl_neigh_set_state())
131 * // its state to "permanent" in order to avoid having it overwritten.
134 * // Secondly the state can be modified allowing normal neighbours to be
136 * rtnl_neigh_set_state(neigh, state);
215 diff |= NEIGH_DIFF(STATE,
220 diff |= NEIGH_DIFF(STATE, a->n_state != b->n_state);
231 __ADD(NEIGH_ATTR_STATE, state)
336 char state[128], flags[64]; local
345 state, sizeof(state)));
    [all...]
  /external/dnsmasq/contrib/dnslist/
dnslist.pl 3 # dnslist - Read state file from dnsmasq and create a nice web page to display
45 # Location of state file. (This is the dnsmasq default.)
55 # Time to wait after each page update. (The state file is checked for changes
75 # Last time the state file was changed.
78 # Check for a change to the state file.
82 print "check_state: state file has been changed.\n";
90 print "check_state: reading state file at startup.\n";
97 # Read data in state file.
102 unless (open STATE, $dnsmasq_state_file) {
106 # Mark all hosts as offline, saving old state
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
VoicemailProviderTest.java 96 Voicemails.SOURCE_DATA, Voicemails.STATE,
138 values.put(Voicemails.STATE, 2);
694 values.put(Voicemails.STATE, Voicemails.STATE_INBOX);

Completed in 1064 milliseconds

1 2