Searched refs:status (Results 1 - 25 of 56) sorted by relevance

123

/development/samples/training/basic/ActivityLifecycle/src/com/example/android/lifecycle/util/
H A DStatusTracker.java46 * Adds the status value for the given activityName into the Map.
49 * @param status
51 public void setStatus(String activityName, String status) { argument
52 mMethodList.add(activityName + "." + status + "()");
54 mStatusMap.put(activityName, status);
58 * Gets the status value for the given activityName.
64 String status = mStatusMap.get(activityName);
65 status = status.substring(2, status
[all...]
/development/ndk/platforms/android-9/arch-x86/include/asm/
H A Di387_32.h32 #define __unlazy_fpu( tsk ) do { if (task_thread_info(tsk)->status & TS_USEDFPU) { __save_init_fpu(tsk); stts(); } else tsk->fpu_counter = 0; } while (0)
34 #define __clear_fpu( tsk ) do { if (task_thread_info(tsk)->status & TS_USEDFPU) { asm volatile("fnclex ; fwait"); task_thread_info(tsk)->status &= ~TS_USEDFPU; stts(); } } while (0)
H A Dsigcontext.h50 unsigned short status; member in struct:_fpstate
/development/cmds/monkey/src/com/android/commands/monkey/
H A DMonkeyGetAppFrameRateEvent.java56 public MonkeyGetAppFrameRateEvent(String status, String activityName, String testCaseName) { argument
58 mStatus = status;
63 public MonkeyGetAppFrameRateEvent(String status, String activityName) { argument
65 mStatus = status;
69 public MonkeyGetAppFrameRateEvent(String status) { argument
71 mStatus = status;
129 int status = p.waitFor();
130 if (status != 0) {
131 System.err.println(String.format("// Shell command %s status was %s",
132 cmd, status));
[all...]
H A DMonkeyCommandEvent.java42 int status = p.waitFor();
43 System.err.println("// Shell command " + mCmd + " status was " + status);
H A DMonkeyGetFrameRateEvent.java55 public MonkeyGetFrameRateEvent(String status, String testCaseName) { argument
57 mStatus = status;
61 public MonkeyGetFrameRateEvent(String status) { argument
63 mStatus = status;
115 int status = p.waitFor();
116 if (status != 0) {
117 System.err.println(String.format("// Shell command %s status was %s",
118 GET_FRAMERATE_CMD, status));
/development/samples/Obb/src/com/example/android/obbapp/
H A DObbMountActivity.java60 // Text indications of current status
61 mStatus = (TextView) findViewById(R.id.status);
68 mStatus.setText(state.status);
139 public CharSequence status; field in class:ObbMountActivity.ObbState
142 ObbState(StorageManager storageManager, CharSequence status, CharSequence path) { argument
144 this.status = status;
/development/ide/xcode/ports/
H A DSkOSWindow_Mac.cpp108 OSStatus status; local
110 status = GetEventParameter(inEvent, name, type, &actualType, size, &actualSize, data);
111 SkASSERT(status == noErr);
171 OSStatus status = CreateEvent(nil, SK_MacEventClass, SK_MacEventKind, 0, 0, &ref); local
172 SkASSERT(status == noErr);
175 status = SetEventParameter(ref, SK_MacEventParamName, SK_MacEventParamName, sizeof(evt), &evt);
176 SkASSERT(status == noErr);
177 status = SetEventParameter(ref, SK_MacEventSinkIDParamName, SK_MacEventSinkIDParamName, sizeof(sinkID), &sinkID);
178 SkASSERT(status == noErr);
183 SkASSERT(status
[all...]
/development/ndk/platforms/android-3/include/linux/
H A Dftape.h47 } status; member in union:__anon97
H A Dmca.h41 enum MCA_AdapterStatus status; member in struct:mca_device
H A Dusbdevice_fs.h69 unsigned int status; member in struct:usbdevfs_iso_packet_desc
75 int status; member in struct:usbdevfs_urb
H A Dtimex.h42 int status; member in struct:timex
/development/samples/ApiDemos/src/com/example/android/apis/app/
H A DTextToSpeechActivity.java88 public void onInit(int status) { argument
89 // status can be either TextToSpeech.SUCCESS or TextToSpeech.ERROR.
90 if (status == TextToSpeech.SUCCESS) {
/development/samples/SampleSyncAdapter/samplesyncadapter_server/model/
H A Ddatastore.py32 status = db.TextProperty() variable in class:Contact
62 return query.get().status
/development/ndk/platforms/android-3/arch-arm/include/asm/arch/
H A Dmux.h20 #define PULL_REG(reg, bit, status) .pull_reg = PULL_DWN_CTRL_##reg, .pull_bit = bit, .pull_val = status,
22 #define PU_PD_REG(reg, status) .pu_pd_reg = PU_PD_SEL_##reg, .pu_pd_val = status,
26 #define PULL_REG_730(reg, bit, status) .pull_reg = OMAP730_IO_CONF_##reg, .pull_bit = bit, .pull_val = status,
/development/samples/BluetoothHDP/src/com/example/bluetooth/health/
H A DBluetoothHDPService.java216 // passes the status back to the UI client.
218 int status) {
219 if (status == BluetoothHealth.APP_CONFIG_REGISTRATION_FAILURE) {
222 } else if (status == BluetoothHealth.APP_CONFIG_REGISTRATION_SUCCESS) {
225 } else if (status == BluetoothHealth.APP_CONFIG_UNREGISTRATION_FAILURE ||
226 status == BluetoothHealth.APP_CONFIG_UNREGISTRATION_SUCCESS) {
228 status == BluetoothHealth.APP_CONFIG_UNREGISTRATION_SUCCESS ?
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
H A DRawContact.java180 String status, String avatarUrl, boolean deleted, long serverContactId,
190 mStatus = status;
223 final String status = !contact.isNull("s") ? contact.getString("s") : null;
228 officePhone, homePhone, email, status, avatarUrl, deleted,
241 String email, String status, boolean deleted, long rawContactId,
244 homePhone, email, status, null, deleted, serverContactId, rawContactId,
178 RawContact(String name, String fullName, String firstName, String lastName, String cellPhone, String officePhone, String homePhone, String email, String status, String avatarUrl, boolean deleted, long serverContactId, long rawContactId, long syncState, boolean dirty) argument
239 create(String fullName, String firstName, String lastName, String cellPhone, String officePhone, String homePhone, String email, String status, boolean deleted, long rawContactId, long serverContactId) argument
/development/samples/Wiktionary/src/com/example/android/wiktionary/
H A DSimpleWikiHelper.java67 * {@link StatusLine} HTTP status code when no server error has occurred.
85 * because of a network error, or the server returned a bad status code.
183 StatusLine status = response.getStatusLine();
184 if (status.getStatusCode() != HTTP_STATUS_OK) {
186 status.toString());
/development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
H A DSimpleWikiHelper.java74 * {@link StatusLine} HTTP status code when no server error has occurred.
92 * because of a network error, or the server returned a bad status code.
190 StatusLine status = response.getStatusLine();
191 if (status.getStatusCode() != HTTP_STATUS_OK) {
193 status.toString());
/development/samples/ApiDemos/src/com/example/android/apis/accessibility/
H A DTaskBackService.java172 public void onInit(int status) { argument
175 if (status == TextToSpeech.SUCCESS) {
/development/samples/ApiDemos/src/com/example/android/apis/os/
H A DSmsReceivedDialog.java66 public void onInit(int status) { argument
67 if (status == TextToSpeech.SUCCESS) {
/development/ndk/platforms/android-3/include/linux/lockd/
H A Dxdr.h58 u32 status; member in struct:nlm_res
/development/ndk/platforms/android-9/arch-mips/include/asm/sgi/
H A Dpi1.h37 volatile u8 status; member in struct:pi1_regs
/development/samples/USB/MissileLauncher/src/com/android/missilelauncher/
H A DMissileLauncherActivity.java220 byte status = -1;
224 // send poll status command
226 // wait for status event
229 if (newStatus != status) {
230 Log.d(TAG, "got status " + newStatus);
231 status = newStatus;
232 if ((status & COMMAND_FIRE) != 0) {
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
H A DWiFiDirectBroadcastReceiver.java87 Log.d(WiFiServiceDiscoveryActivity.TAG, "Device status -" + device.status);

Completed in 224 milliseconds

123