Searched defs:result (Results 1 - 25 of 4580) sorted by relevance

1234567891011>>

/external/webrtc/webrtc/examples/objc/AppRTCDemo/
H A DARDMessageResponse+Internal.h15 @property(nonatomic, assign) ARDMessageResultType result; variable
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mlockall/
H A D13-1.c21 int result; local
23 result = mlockall(0);
25 if (result == -1 && errno == EINVAL) {
28 } else if (result != -1) {
29 printf("mlockall() return %i instead of -1.\n", result);
H A D13-2.c21 int result; local
23 result = mlockall(~(MCL_CURRENT | MCL_FUTURE));
25 if (result == -1 && errno == EINVAL) {
28 } else if (result != -1) {
29 printf("mlockall() return %i instead of -1.\n", result);
H A D8-1.c20 int result; local
22 result = mlockall(MCL_CURRENT);
23 if (result == 0 && errno == 0) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_get_priority_max/
H A D1-1.c21 int result = -1; local
23 result = sched_get_priority_max(SCHED_RR);
25 if (result != -1 && errno == 0) {
27 result);
H A D1-2.c21 int result = -1; local
23 result = sched_get_priority_max(SCHED_FIFO);
25 if (result != -1 && errno == 0) {
27 result);
H A D1-3.c24 int result = -1; local
26 result = sched_get_priority_max(SCHED_SPORADIC);
28 if (result != -1 && errno == 0) {
31 result);
H A D1-4.c21 int result = -1; local
23 result = sched_get_priority_max(SCHED_OTHER);
25 if (result != -1 && errno == 0) {
27 result);
H A D2-1.c20 int result = -1; local
22 result = sched_get_priority_max(-1);
24 if (result == -1 && errno == EINVAL) {
29 if (result != -1) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_get_priority_min/
H A D1-1.c21 int result = -1; local
23 result = sched_get_priority_min(SCHED_RR);
25 if (result != -1 && errno == 0) {
27 result);
H A D1-2.c21 int result = -1; local
23 result = sched_get_priority_min(SCHED_FIFO);
25 if (result != -1 && errno == 0) {
27 result);
H A D1-3.c24 int result = -1; local
26 result = sched_get_priority_min(SCHED_SPORADIC);
28 if (result != -1 && errno == 0) {
31 result);
H A D1-4.c21 int result = -1; local
23 result = sched_get_priority_min(SCHED_OTHER);
25 if (result != -1 && errno == 0) {
27 result);
H A D2-1.c20 int result = -1; local
22 result = sched_get_priority_min(-1);
24 if (result == -1 && errno == EINVAL) {
29 if (result != -1) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_getparam/speculative/
H A D7-1.c24 int result = -1; local
26 result = sched_getparam(0, NULL);
28 if (result == -1 && errno == EFAULT) {
33 if (result == -1 && errno == EINVAL) {
40 result, errno);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_getscheduler/
H A D4-1.c21 int result = -1; local
23 result = sched_getscheduler(0);
25 if (result != -1 && errno == 0) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_rr_get_interval/speculative/
H A D5-1.c25 int result = -2; local
27 result = sched_rr_get_interval(0, NULL);
29 if (result == -1 && errno == EFAULT) {
34 if (result == -1 && errno == EINVAL) {
41 result, errno);
/external/skia/experimental/svg/model/
H A DSkSVGAttribute.cpp11 SkSVGPresentationAttributes result; local
13 result.fFill.set(SkSVGPaint(SkSVGColorType(SK_ColorBLACK)));
14 result.fFillOpacity.set(SkSVGNumberType(1));
15 result.fFillRule.set(SkSVGFillRule(SkSVGFillRule::Type::kNonZero));
17 result.fStroke.set(SkSVGPaint(SkSVGPaint::Type::kNone));
18 result.fStrokeLineCap.set(SkSVGLineCap(SkSVGLineCap::Type::kButt));
19 result.fStrokeLineJoin.set(SkSVGLineJoin(SkSVGLineJoin::Type::kMiter));
20 result.fStrokeOpacity.set(SkSVGNumberType(1));
21 result.fStrokeWidth.set(SkSVGLength(1));
23 return result;
[all...]
/external/tpm2/
H A DChangeEPS.c15 TPM_RC result; local
20 result = NvIsAvailable();
21 if(result != TPM_RC_SUCCESS) return result;
H A DClear.c21 TPM_RC result; local
29 result = NvIsAvailable();
30 if(result != TPM_RC_SUCCESS) return result;
H A DClearControl.c21 TPM_RC result; local
26 result = NvIsAvailable();
27 if(result != TPM_RC_SUCCESS) return result;
H A DDictionaryAttackLockReset.c15 TPM_RC result; local
23 result = NvIsAvailable();
24 if(result != TPM_RC_SUCCESS) return result;
H A DDictionaryAttackParameters.c15 TPM_RC result; local
20 result = NvIsAvailable();
21 if(result != TPM_RC_SUCCESS) return result;
H A DHierarchyChangeAuth.c22 TPM_RC result; local
27 result = NvIsAvailable();
28 if(result != TPM_RC_SUCCESS) return result;
H A DNV_GlobalWriteLock.c15 TPM_RC result; local
23 result = NvIsAvailable();
24 if(result != TPM_RC_SUCCESS)
25 return result;

Completed in 274 milliseconds

1234567891011>>