HomeSort by relevance Sort by last modified time
    Searched refs:status (Results 176 - 200 of 11169) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/native/libs/vr/libdisplay/
display_client.cpp 7 #include <pdx/status.h>
16 using android::pdx::Status;
27 auto status = InvokeRemoteMethod<DisplayProtocol::GetSurfaceInfo>(); variable
28 if (!status) {
30 status.GetErrorMessage().c_str());
31 Close(status.error());
33 *error = status.error();
36 surface_id_ = status.get().surface_id;
37 z_order_ = status.get().z_order;
38 visible_ = status.get().visible
45 auto status = InvokeRemoteMethod<DisplayProtocol::CreateSurface>(attributes); variable
70 auto status = InvokeRemoteMethod<DisplayProtocol::SetAttributes>(attributes); local
109 auto status = InvokeRemoteMethod<DisplayProtocol::CreateQueue>( local
138 auto status = CreateQueue(width, height, format, metadata_size); local
170 auto status = local
192 auto status = local
217 auto status = InvokeRemoteMethod<DisplayProtocol::DeleteGlobalBuffer>(key); local
228 auto status = InvokeRemoteMethod<DisplayProtocol::GetGlobalBuffer>(key); local
    [all...]
  /external/icu/icu4c/source/common/
icuplugimp.h 35 * @param status error code
40 uplug_openLibrary(const char *libName, UErrorCode *status);
45 * @param status error code
49 uplug_closeLibrary(void *lib, UErrorCode *status);
54 * @param status error code
59 uplug_findLibrary(void *lib, UErrorCode *status);
69 * @param status error result
73 uplug_init(UErrorCode *status);
  /external/icu/icu4c/source/i18n/
msgfmt_impl.h 29 FormatNameEnumeration(UVector *fFormatNames, UErrorCode& status);
33 virtual const UnicodeString* snext(UErrorCode& status);
34 virtual void reset(UErrorCode& status);
35 virtual int32_t count(UErrorCode& status) const;
numsys_impl.h 30 NumsysNameEnumeration(UVector *numsysNames, UErrorCode& status);
35 virtual const UnicodeString* snext(UErrorCode& status);
36 virtual void reset(UErrorCode& status);
37 virtual int32_t count(UErrorCode& status) const;
region_impl.h 29 RegionNameEnumeration(UVector *fNameList, UErrorCode& status);
33 virtual const UnicodeString* snext(UErrorCode& status);
34 virtual void reset(UErrorCode& status);
35 virtual int32_t count(UErrorCode& status) const;
uregexc.cpp 30 UErrorCode *status) {
31 if (U_FAILURE(*status)) {
35 *status = U_ILLEGAL_ARGUMENT_ERROR;
40 return uregex_open(patString.getBuffer(), patString.length(), flags, pe, status);
  /external/pdfium/testing/libfuzzer/
pdf_css_fuzzer.cc 22 CFX_CSSSyntaxStatus status; local
24 status = parser.DoSyntaxParse();
25 } while (status != CFX_CSSSyntaxStatus::Error &&
26 status != CFX_CSSSyntaxStatus::EOS);
  /external/strace/tests/
run_expect_termsig.c 53 int status; local
54 if (waitpid(pid, &status, 0) != pid)
57 return !(WIFSIGNALED(status) && WTERMSIG(status) == atoi(av[1]));
  /external/strace/tests-m32/
run_expect_termsig.c 53 int status; local
54 if (waitpid(pid, &status, 0) != pid)
57 return !(WIFSIGNALED(status) && WTERMSIG(status) == atoi(av[1]));
  /external/strace/tests-mx32/
run_expect_termsig.c 53 int status; local
54 if (waitpid(pid, &status, 0) != pid)
57 return !(WIFSIGNALED(status) && WTERMSIG(status) == atoi(av[1]));
  /external/swiftshader/src/OpenGL/libEGL/
Sync.hpp 32 status = EGL_UNSIGNALED_KHR;
43 void signal() { status = EGL_SIGNALED_KHR; }
44 bool isSignaled() const { return status == EGL_SIGNALED_KHR; }
47 EGLint status; member in class:egl::FenceSync
  /frameworks/av/media/libaudioclient/
TrackPlayerBase.cpp 66 status_t status = NO_INIT; local
68 status = mAudioTrack->start();
70 return status;
74 status_t status = NO_INIT; local
77 status = NO_ERROR;
79 return status;
84 status_t status = NO_INIT; local
87 status = NO_ERROR;
89 return status;
97 status_t status = NO_INIT local
117 VolumeShaper::Status status = mAudioTrack->applyVolumeShaper(spConfiguration, spOperation); local
    [all...]
  /frameworks/native/libs/vr/libdvr/
dvr_pose.cpp 18 int status = android::dvr::dvrPoseClientGetDataReaderHandle(client, local
21 if (status != 0) {
22 ALOGE("dvrPoseClientGetDataReader: Failed to get queue: %d", status);
23 return status;
  /hardware/interfaces/usb/gadget/1.0/
IUsbGadgetCallback.hal 21 * Callback function used to propagate the status of configuration
26 * @param status SUCCESS when the functions are applied.
32 Status status);
39 * @param status FUNCTIONS_APPLIED when list of functions have been
46 Status status);
  /hardware/interfaces/wifi/1.0/
IWifiChip.hal 175 * @return status WifiStatus of the operation.
176 * Possible status codes:
181 getId() generates (WifiStatus status, ChipId id);
190 * @return status WifiStatus of the operation.
191 * Possible status codes:
195 registerEventCallback(IWifiChipEventCallback callback) generates (WifiStatus status);
200 * @return status WifiStatus of the operation.
201 * Possible status codes:
209 generates (WifiStatus status, bitfield<ChipCapabilityMask> capabilities);
214 * @return status WifiStatus of the operation
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/guile/
interpreter.i 13 GSCM_status status;
20 status = gscm_run_scm(argc, argv, 0, stdout, stderr, guile_init, 0, "#t");
21 if (status != GSCM_OK) {
22 fputs(gscm_error_msg(status), stderr);
29 status = gscm_create_top_level(&toplev);
30 if (status != GSCM_OK) {
31 fputs(gscm_error_msg(status), stderr);
46 status = gscm_eval_str(&eval_answer, toplev, input_str);
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
pass_manager.cpp 20 Pass::Status PassManager::Run(ir::Module* module) {
21 auto status = Pass::Status::SuccessWithoutChange; local
24 if (one_status == Pass::Status::Failure) return one_status;
25 if (one_status == Pass::Status::SuccessWithChange) status = one_status;
28 if (status == Pass::Status::SuccessWithChange) {
31 return status;
  /system/vold/binder/android/os/
IVoldTaskListener.aidl 23 void onStatus(int status, in PersistableBundle extras);
24 void onFinished(int status, in PersistableBundle extras);
  /tools/tradefederation/core/src/com/android/tradefed/suite/checker/
StatusCheckerResult.java 22 /** status check was successful */
24 /** status check did not succeed. An error message might be available (optional). */
31 /** Create a {@link StatusCheckerResult} with the default {@link CheckStatus#FAILED} status. */
35 * Create a {@link StatusCheckerResult} with the given status.
37 * @param status the {@link CheckStatus}
39 public StatusCheckerResult(CheckStatus status) {
40 mCheckStatus = status;
49 public void setStatus(CheckStatus status) {
50 mCheckStatus = status;
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
WifiAwareNativeCallback.java 146 public void notifyCapabilitiesResponse(short id, WifiNanStatus status,
149 Log.v(TAG, "notifyCapabilitiesResponse: id=" + id + ", status=" + statusString(status)
153 if (status.status == NanStatusType.SUCCESS) {
176 Log.e(TAG, "notifyCapabilitiesResponse: error code=" + status.status + " ("
177 + status.description + ")");
182 public void notifyEnableResponse(short id, WifiNanStatus status) {
183 if (mDbg) Log.v(TAG, "notifyEnableResponse: id=" + id + ", status=" + statusString(status))
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cnmdptst.c 37 #define CHECK(status,str) if (U_FAILURE(status)) { log_err("FAIL: %s\n", str); return; }
70 UErrorCode status = U_ZERO_ERROR; local
79 status = U_ZERO_ERROR;
81 fmt= unum_open(UNUM_IGNORE,upat, u_strlen(upat), "en_US",NULL, &status);
82 if (U_FAILURE(status)) {
83 log_err_status(status, "FAIL: Number format constructor failed for pattern %s -> %s\n", pat[i], u_errorName(status));
87 lneed=unum_toPattern(fmt, FALSE, NULL, lneed, &status);
88 if(status==U_BUFFER_OVERFLOW_ERROR)
126 UErrorCode status=U_ZERO_ERROR; local
201 UErrorCode status = U_ZERO_ERROR; local
348 UErrorCode status = U_ZERO_ERROR; local
420 UErrorCode status = U_ZERO_ERROR; local
466 UErrorCode status = U_ZERO_ERROR; local
536 UErrorCode status = U_ZERO_ERROR; local
617 UErrorCode status = U_ZERO_ERROR; local
645 UErrorCode status; local
680 UErrorCode status=U_ZERO_ERROR; local
711 UErrorCode status = U_ZERO_ERROR; local
847 UErrorCode status = U_ZERO_ERROR; local
904 UErrorCode status = U_ZERO_ERROR; local
1022 UErrorCode status = U_ZERO_ERROR; local
1075 UErrorCode status; local
    [all...]
hpmufn.c 45 #define TEST_STATUS(status, expected) \
46 if (status != expected) { \
47 log_err_status(status, "FAIL at %s:%d. Actual status = \"%s\"; Expected status = \"%s\"\n", \
48 __FILE__, __LINE__, u_errorName(status), u_errorName(expected)); gMutexFailures++; }
120 UErrorCode status = U_ZERO_ERROR; local
138 status = U_ZERO_ERROR;
139 u_setMemoryFunctions(&gContext, NULL, myMemRealloc, myMemFree, &status);
140 TEST_STATUS(status, U_ILLEGAL_ARGUMENT_ERROR)
    [all...]
  /frameworks/base/tests/JankBench/app/src/main/jni/
WorkerPool.cpp 40 int status = pthread_mutex_init(&mMutex, NULL); local
41 if (status) {
46 status = pthread_cond_init(&mCondition, NULL);
47 if (status) {
57 int status; local
59 status = pthread_mutex_lock(&mMutex);
60 if (status) {
61 __android_log_print(ANDROID_LOG_INFO, "bench", "WorkerPool: error %i locking for set condition.", status);
67 status = pthread_cond_signal(&mCondition);
68 if (status) {
79 int status; local
180 int status = pthread_attr_init(&threadAttr); local
    [all...]
  /external/autotest/client/common_lib/cros/fake_device_server/
server_errors.py 12 def __init__(self, status, message):
14 @param status: HTTPResponse status.
17 cherrypy.HTTPError.__init__(self, status, message)
18 cherrypy.log('ServerHTTPError status: %s message: %s' % (status, message))
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_nolibc_test.cc 27 int status = system(NolibcTestPath.c_str()); local
28 EXPECT_EQ(true, WIFEXITED(status));
29 EXPECT_EQ(0, WEXITSTATUS(status));

Completed in 331 milliseconds

1 2 3 4 5 6 78 91011>>