HomeSort by relevance Sort by last modified time
    Searched refs:Status (Results 551 - 575 of 988) sorted by null

<<21222324252627282930>>

  /external/mesa3d/docs/
MESA_ycbcr_texture.spec 14 Status
48 IP Status
MESA_texture_signed_rgba.spec 17 IP Status
21 Status
  /external/mesa3d/docs/OLD/
MESA_sprite_point.spec 13 Status
  /external/webrtc/webrtc/p2p/stunprober/
stunprober.cc 558 void StunProber::ReportOnPrepared(StunProber::Status status) {
560 observer_->OnPrepared(this, status);
564 void StunProber::ReportOnFinished(StunProber::Status status) {
566 observer_->OnFinished(this, status);
  /frameworks/av/camera/
ICamera.cpp 69 binder::Status disconnect()
76 return binder::Status::ok();
  /frameworks/compile/mclinker/lib/LD/
GNUArchiveReader.cpp 124 Archive::Symbol::Status status = local
126 if (Archive::Symbol::Unknown != status)
127 pArchive.setSymbolStatus(idx, status);
129 if (Archive::Symbol::Include == status) {
330 enum Archive::Symbol::Status GNUArchiveReader::shouldIncludeSymbol(
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiConfigManagerTest.java 371 final WifiConfiguration.NetworkSelectionStatus status = local
373 status.setNetworkSelectionStatus(WifiConfiguration.NetworkSelectionStatus
375 status.setNetworkSelectionDisableReason(
377 status.setDisableTime(System.currentTimeMillis() - 60 * 60 * 1000);
404 config2.status = WifiConfiguration.Status.ENABLED;
420 assertEquals(WifiConfiguration.Status.ENABLED, config2.status);
435 assertEquals(WifiConfiguration.Status.DISABLED, config2.status);
    [all...]
  /hardware/qcom/media/msm8974/mm-core/omxcore/src/common/
qc_omx_core.c 822 OMX_BOOL Status = OMX_TRUE;
846 return Status;
  /hardware/qcom/media/msm8974/mm-core/src/common/
qc_omx_core.c 807 OMX_BOOL Status = OMX_TRUE;
831 return Status;
  /hardware/qcom/media/msm8996/mm-core/src/common/
qc_omx_core.c 905 OMX_BOOL Status = OMX_TRUE;
929 return Status;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
strmini.h 227 NTSTATUS Status;
391 IN NTSTATUS Status
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
poclass.h 244 } Status;
279 typedef VOID (*PPROCESSOR_PCC_DOORBELL_CALLBACK)(ULONG Status, ULONG_PTR Context);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CustomViewFinder.java 35 import org.eclipse.core.runtime.Status;
392 return Status.OK_STATUS;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
ActivityPage.java 30 import org.eclipse.core.runtime.Status;
264 IStatus status = null; local
268 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
272 status = templateHandler.validateTemplate(mValues.minSdkLevel,
277 setPageComplete(status == null || status.getSeverity() != IStatus.ERROR);
278 if (status != null) {
279 setMessage(status.getMessage(),
280 status.getSeverity() == IStatus.ERRO
    [all...]
  /system/netd/tests/
binder_test.cpp 290 binder::Status status = mNetd->networkRejectNonSecureVpn(false, uidRanges); local
291 ASSERT_EQ(binder::Status::EX_SERVICE_SPECIFIC, status.exceptionCode());
292 EXPECT_EQ(ENOENT, status.serviceSpecificErrorCode());
  /toolchain/binutils/binutils-2.25/gold/
aarch64.cc 3858 typename ObjType::Compute_final_local_value_status status = local
3902 Symbol_table::Compute_final_value_status status; local
4024 The_reloc_functions_status status = local
5403 typename This::Status status = This::template local
    [all...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
WifiConfigCreator.java 149 wifiConf.status = WifiConfiguration.Status.ENABLED;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/mws/
test.py 43 status = response.GetServiceStatusResult.Status
44 self.assertIn(status, ('GREEN', 'GREEN_I', 'YELLOW', 'RED'))
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
GenerateResults.java 28 import org.eclipse.core.runtime.Status;
553 // print scenario status table
555 // print the component scenario status table beneath the fingerprint
790 " Optional. Used by scenario status table to provide the following:\n" +
    [all...]
  /external/eigen/test/
sparseLM.cpp 165 LevenbergMarquardtSpace::Status status; local
166 status = lm.minimizeInit(uv);
167 if (status==LevenbergMarquardtSpace::ImproperInputParameters)
  /external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
LMonestep.h 20 LevenbergMarquardtSpace::Status
  /external/libchrome/sandbox/win/tools/finder/
ntundoc.h 148 NTSTATUS Status;
  /external/libnfc-nxp/src/
phFriNfc_MifStdFormat.h 452 * \param[in] Status The completion status of the lower layer (to be handled by the implementation of
456 * \note For general information about the completion routine interface please see \ref pphFriNfc_Cr_t . * The Different Status Values are as follows
460 NFCSTATUS Status);
  /external/llvm/lib/Support/
Path.cpp 714 file_status Status;
715 std::error_code EC = status(Path, Status);
718 Result = Status.getUniqueID();
900 bool exists(file_status status) {
901 return status_known(status) && status.type() != file_type::file_not_found;
908 bool is_directory(file_status status) {
909 return status.type() == file_type::directory_file;
914 if (std::error_code ec = status(path, st)
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
glxapi.h 176 Status (*GetTransparentIndexSUN)(Display *, Window, Window, long *);

Completed in 3038 milliseconds

<<21222324252627282930>>