Searched defs:status (Results 201 - 225 of 305) sorted by path

1234567891011>>

/frameworks/base/services/java/com/android/server/pm/
H A DSettings.java228 void setInstallStatus(String pkgName, int status) { argument
231 if(p.getInstallStatus() != status) {
232 p.setInstallStatus(status);
/frameworks/base/services/java/com/android/server/print/
H A DRemotePrintSpooler.java518 int status, String error) throws RemoteException, TimeoutException {
520 target.setPrintJobState(printJobId, status, error, mCallback, sequence);
517 setPrintJobState(IPrintSpooler target, PrintJobId printJobId, int status, String error) argument
/frameworks/base/services/jni/
H A Dcom_android_server_input_InputManagerService.cpp136 status_t status = android_view_PointerIcon_loadSystemIcon(env, local
138 if (!status) {
437 status_t status = android_view_PointerIcon_load(env, pointerIconObj, local
439 if (!status && !pointerIcon.isNullIcon()) {
1098 status_t status = im->registerInputChannel( local
1100 if (status) {
1102 message.appendFormat("Failed to register input channel. status=%d", status);
1126 status_t status = im->unregisterInputChannel(env, inputChannel); local
1127 if (status
1148 status_t status = android_view_KeyEvent_toNative(env, inputEventObj, & keyEvent); local
[all...]
H A Dcom_android_server_location_FlpHardwareProvider.cpp547 int32_t status,
562 status,
546 GeofenceMonitorStatusCallback( int32_t status, uint32_t source, FlpLocation* lastLocation) argument
H A Dcom_android_server_location_GpsLocationProvider.cpp90 static void status_callback(GpsStatus* status) argument
93 env->CallVoidMethod(mCallbacksObj, method_reportStatus, status->status);
182 agps_status->type, agps_status->status, ipaddr);
258 static void gps_geofence_status_callback(int32_t status, GpsLocation* location) argument
280 env->CallVoidMethod(mCallbacksObj, method_reportGeofenceStatus, status,
285 static void gps_geofence_add_callback(int32_t geofence_id, int32_t status) argument
288 if (status != GPS_GEOFENCE_OPERATION_SUCCESS) {
289 ALOGE("Error in geofence_add_callback: %d\n", status);
291 env->CallVoidMethod(mCallbacksObj, method_reportGeofenceAddStatus, geofence_id, status);
295 gps_geofence_remove_callback(int32_t geofence_id, int32_t status) argument
305 gps_geofence_resume_callback(int32_t geofence_id, int32_t status) argument
315 gps_geofence_pause_callback(int32_t geofence_id, int32_t status) argument
[all...]
/frameworks/base/test-runner/src/android/test/
H A DAndroidTestRunner.java251 public void testFailed(int status, Test test, Throwable t) { argument
/frameworks/base/tests/CoreTests/android/core/
H A DTestEventHandler.java66 /* Expected status codes */
150 * Implements the EventHandler status method called when a server status
154 * @param code The status code
157 public void status(int major_version, int minor_version, method in class:TestEventHandler
160 Log.v(LOGTAG, "TestEventHandler:status() major: " + major_version +
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
H A DTrackerService.java333 * @param provider - name of provider whose status changed
334 * @param status - new status
335 * @param extras - optional set of extra status messages
337 public void onStatusChanged(String provider, int status, Bundle extras) { argument
339 mTrackerData.writeEntry(provider, "status change: " + status);
/frameworks/base/tools/aapt/
H A DPackage.cpp102 status_t status; local
104 status = zip->open(outputFile.string(), ZipFile::kOpenReadWrite | ZipFile::kOpenCreate);
105 if (status != NO_ERROR) {
225 status_t status = filter.parse(bundle->getConfigurations()); local
226 if (status != NO_ERROR) {
H A DResource.cpp319 status_t status = preProcessImage(mBundle, mAssets, mFile, NULL); local
320 if (status) {
344 status_t status = wq.schedule(w); local
345 if (status) {
346 fprintf(stderr, "preProcessImages failed: schedule() returned %d\n", status);
352 status_t status = wq.finish(); local
353 if (status) {
354 fprintf(stderr, "preProcessImages failed: finish() returned %d\n", status);
H A DResourceTable.cpp2243 status_t status = addEntry(mCurrentXmlPos, package, type, name, value, NULL, NULL, true); local
2244 if (status == NO_ERROR) {
H A DWorkQueue.cpp48 status_t status = workThread->run("WorkQueue::WorkThread"); local
49 if (status) {
50 return status;
/frameworks/base/tools/validatekeymaps/
H A DMain.cpp82 status_t status = KeyLayoutMap::load(String8(filename), &map); local
83 if (status) {
84 fprintf(stderr, "Error %d parsing key layout file.\n\n", status);
92 status_t status = KeyCharacterMap::load(String8(filename), local
94 if (status) {
95 fprintf(stderr, "Error %d parsing key character map file.\n\n", status);
103 status_t status = PropertyMap::load(String8(filename), &map); local
104 if (status) {
105 fprintf(stderr, "Error %d parsing input device configuration file.\n\n", status);
114 status_t status local
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java154 /** Possible status of a network configuration. */
187 * The current status of this network configuration entry.
190 public int status; field in class:WifiConfiguration
194 * Valid when {@link #status} == Status.DISABLED
377 if (this.status == WifiConfiguration.Status.CURRENT) {
379 } else if (this.status == WifiConfiguration.Status.DISABLED) {
582 status = source.status;
613 dest.writeInt(status);
644 config.status
[all...]
H A DWifiNative.java250 public String status() { method in class:WifiNative
830 String status = status();
831 if (status == null) return "";
833 String[] tokens = status.split("\n");
H A DWpsResult.java34 public Status status; field in class:WpsResult
39 status = Status.FAILURE;
44 status = s;
50 sbuf.append(" status: ").append(status.toString());
65 status = source.status;
72 dest.writeString(status.name());
81 result.status = Status.valueOf(in.readString());
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDevice.java108 /** Device connection status */
109 public int status = UNAVAILABLE; field in class:WifiP2pDevice
220 status = AVAILABLE;
273 status = device.status;
317 sbuf.append("\n status: ").append(status);
337 status = source.status;
351 dest.writeInt(status);
[all...]
H A DWifiP2pDeviceList.java89 mDevices.get(device.deviceAddress).status = device.status;
120 void updateStatus(String deviceAddress, int status) { argument
124 d.status = status;
H A DWifiP2pService.java1542 P2pStatus status = (P2pStatus) message.obj;
1543 if (status == P2pStatus.NO_COMMON_CHANNEL) {
1557 status = (P2pStatus) message.obj;
1558 if (status == P2pStatus.NO_COMMON_CHANNEL) {
1564 status = (P2pStatus)message.obj;
1565 if (status == P2pStatus.SUCCESS) {
1570 loge("Invitation result " + status);
1571 if (status == P2pStatus.UNKNOWN_P2P_GROUP) {
1583 } else if (status == P2pStatus.INFORMATION_IS_CURRENTLY_UNAVAILABLE) {
1591 } else if (status
2571 updateThisDevice(int status) argument
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pDnsSdServiceResponse.java131 sbuf.append(" status:").append(Status.toString(mStatus));
147 * @param status status code.
152 protected WifiP2pDnsSdServiceResponse(int status, argument
155 status, tranId, dev, data);
289 * @param status status code.
295 static WifiP2pDnsSdServiceResponse newInstance(int status, argument
297 if (status != WifiP2pServiceResponse.Status.SUCCESS) {
298 return new WifiP2pDnsSdServiceResponse(status,
[all...]
H A DWifiP2pServiceResponse.java70 * The status code of service discovery response.
71 * Currently 4 status codes are defined and the status codes from 4 to 255
90 public static String toString(int status) { argument
91 switch(status) {
113 * @param status status code.
118 protected WifiP2pServiceResponse(int serviceType, int status, int transId, argument
121 mStatus = status;
138 * Return the status cod
[all...]
H A DWifiP2pUpnpServiceResponse.java75 * @param status status code
80 protected WifiP2pUpnpServiceResponse(int status, argument
83 status, transId, dev, data);
123 sbuf.append(" status:").append(Status.toString(mStatus));
139 * @param status status code.
146 static WifiP2pUpnpServiceResponse newInstance(int status, argument
148 if (status != WifiP2pServiceResponse.Status.SUCCESS) {
149 return new WifiP2pUpnpServiceResponse(status, transI
[all...]
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp404 Compiler::ErrorCode status = compileScript(*script, pResName, local
412 if (status != Compiler::kSuccess) {
433 Compiler::ErrorCode status = compileScript(pScript, pOut, pOut, pRuntimePath, local
435 if (status != Compiler::kSuccess) {
/frameworks/compile/mclinker/include/mcld/
H A DGeneralOptions.h321 enum status { enum in class:mcld::GeneralOptions
336 status m_ExecStack; // execstack, noexecstack
/frameworks/compile/mclinker/include/mcld/LD/
H A DArchive.h117 : name(pName), fileOffset(pOffset), status(pStatus)
126 enum Status status; member in struct:mcld::Archive::Symbol
217 /// getSymbolStatus - get the status of a symbol
220 /// setSymbolStatus - set the status of a symbol

Completed in 431 milliseconds

1234567891011>>