HomeSort by relevance Sort by last modified time
    Searched refs:result (Results 501 - 525 of 27666) sorted by null

<<21222324252627282930>>

  /external/tpm2/
ActivateCredential.c 31 TPM_RC result = TPM_RC_SUCCESS; local
56 result = CryptSecretDecrypt(in->keyHandle, NULL,
58 if(result != TPM_RC_SUCCESS)
60 if(result == TPM_RC_KEY)
62 return RcSafeAddToResult(result, RC_ActivateCredential_secret);
67 result = CredentialToSecret(&in->credentialBlob,
72 if(result != TPM_RC_SUCCESS)
73 return RcSafeAddToResult(result,RC_ActivateCredential_credentialBlob);
GetCommandAuditDigest.c 30 TPM_RC result; local
37 result = FillInAttestInfo(in->signHandle,
41 if(result != TPM_RC_SUCCESS)
43 if(result == TPM_RC_KEY)
46 return RcSafeAddToResult(result, RC_GetCommandAuditDigest_inScheme);
67 result = SignAttestInfo(in->signHandle,
74 if(result != TPM_RC_SUCCESS)
75 return result;
GetTime.c 30 TPM_RC result; local
37 result = FillInAttestInfo(in->signHandle,
41 if(result != TPM_RC_SUCCESS)
43 if(result == TPM_RC_KEY)
46 return RcSafeAddToResult(result, RC_GetTime_inScheme);
66 result = SignAttestInfo(in->signHandle,
72 if(result != TPM_RC_SUCCESS)
73 return result;
Quote.c 26 TPM_RC result; local
35 result = FillInAttestInfo(in->signHandle,
39 if(result != TPM_RC_SUCCESS)
41 if(result == TPM_RC_KEY)
44 return RcSafeAddToResult(result, RC_Quote_inScheme);
75 result = SignAttestInfo(in->signHandle,
81 if(result != TPM_RC_SUCCESS)
82 return result;
  /external/valgrind/none/tests/
pth_cancel1.stdout.exp 3 result is correct
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
AudioRoute.cpp 31 String8 result; local
34 result.append(buffer);
37 result.append(buffer);
41 result.append(buffer);
44 result.append(buffer);
47 result.append("\n");
49 write(fd, result.string(), result.size());
  /frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
CryptoTestHelper.java 26 final int result = runSelfTest(); local
27 SecurityLog.writeEvent(SecurityLog.TAG_CRYPTO_SELF_TEST_COMPLETED, result);
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
FrameworkPerfTest.java 33 for (RunResult result : activity.mResults) {
34 testResult.putString(result.name, String.format("%f,%d,%d,%f,%d,%d",
35 result.getFgMsPerOp(), result.fgOps, result.fgTime,
36 result.getBgMsPerOp(), result.bgOps, result.bgTime));
  /frameworks/wilhelm/tests/sandbox/
srcsink.c 26 SLresult result; local
30 result = slCreateEngine(&engineObject, 0, NULL, 0, NULL, NULL);
31 assert(SL_RESULT_SUCCESS == result);
33 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
34 assert(SL_RESULT_SUCCESS == result);
35 result = (*engineObject)->GetInterface(engineObject, SL_IID_ENGINE, &engineEngine);
36 assert(SL_RESULT_SUCCESS == result);
66 result = (*engineEngine)->CreateAudioPlayer(engineEngine, &playerObject, &audioSrc,
68 assert(SL_RESULT_PARAMETER_INVALID == result);
73 result = (*engineEngine)->CreateAudioPlayer(engineEngine, &playerObject, &audioSrc
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
CountingOutputStream.java 99 long result = getByteCount(); local
100 if (result > Integer.MAX_VALUE) {
101 throw new ArithmeticException("The byte count " + result + " is too large to be converted to an int");
103 return (int) result;
117 long result = resetByteCount(); local
118 if (result > Integer.MAX_VALUE) {
119 throw new ArithmeticException("The byte count " + result + " is too large to be converted to an int");
121 return (int) result;
129 * result in incorrect count for files over 2GB.
143 * result in incorrect count for files over 2GB
    [all...]
  /prebuilts/gdb/darwin-x86/share/gdb/system-gdbinit/
elinos.py 41 result = {}
45 result[key] = os.environ[var]
48 result[key] = None
50 if result["project"] is not None:
51 result["xenomai"] = glob.glob(result["project"] + "/xenomai-[0-9.]*")
53 result["xenomai"] = []
55 return result
  /prebuilts/gdb/linux-x86/share/gdb/system-gdbinit/
elinos.py 41 result = {}
45 result[key] = os.environ[var]
48 result[key] = None
50 if result["project"] is not None:
51 result["xenomai"] = glob.glob(result["project"] + "/xenomai-[0-9.]*")
53 result["xenomai"] = []
55 return result
  /system/security/keystore/binder/android/security/
IConfirmationPromptCallback.aidl 26 oneway void onConfirmationPromptCompleted(in int result, in byte[] dataThatWasConfirmed);
  /toolchain/binutils/binutils-2.27/include/
timeval-utils.h 30 extern void timeval_add (struct timeval *result,
33 extern void timeval_sub (struct timeval *result,
  /cts/tools/dasm/src/java_cup/
lalr_item.java 149 lalr_item result; local
156 result = new lalr_item(the_production(), dot_pos()+1,
160 add_propagate(result);
162 return result;
175 terminal_set result; local
185 /* start with an empty result */
186 result = new terminal_set();
201 result.add((terminal)sym);
202 return result;
207 result.add(((non_terminal)sym).first_set())
300 String result = ""; local
    [all...]
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/validator/
Java5ValidatorTest.java 25 ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X<A>{List<String> b = new ArrayList<>();}")); local
26 assertProblems(result, "(line 1,col 33) The diamond operator is not supported.");
31 ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "@interface X{}")); local
32 assertProblems(result,
51 ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + allModifiers + "@interface I{}}")); local
52 assertProblems(result,
68 ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("@interface X{" + allModifiers + "int x();}")); local
69 assertProblems(result,
89 ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider(allModifiers + "enum X{}")); local
90 assertProblems(result,
110 ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X{" + allModifiers + "enum I{}}")); local
128 ParseResult<Parameter> result = javaParser.parse(PARAMETER, provider("String... x")); local
134 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("for(X x: xs){}")); local
140 ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("import static x;import static x.*;import x.X;import x.*;")); local
146 ParseResult<CompilationUnit> result = javaParser.parse(COMPILATION_UNIT, provider("class X extends Y<int> {}")); local
152 ParseResult<Statement> result = javaParser.parse(STATEMENT, provider("int enum;")); local
    [all...]
  /external/libxml2/doc/tutorial/
includexpath.c 22 xmlXPathObjectPtr result;
29 result = xmlXPathEvalExpression(xpath, context);
31 if (result == NULL) {
35 if(xmlXPathNodeSetIsEmpty(result->nodesetval)){
36 xmlXPathFreeObject(result);
37 printf("No result\n");
40 return result;
49 xmlXPathObjectPtr result;
60 result = getnodeset (doc, xpath);
61 if (result) {
    [all...]
  /external/mockito/src/test/java/org/mockitoutil/
JUnitResultAssert.java 7 import org.junit.runner.Result;
17 * Assertion utility for cleaner & easier to debug tests that inspect on JUnit's Result object
20 private Result result; field in class:JUnitResultAssert
22 private JUnitResultAssert(Result result) {
23 this.result = result;
27 if (result.wasSuccessful()) {
31 throw new AssertionError(formatFailures(result.getFailures()))
    [all...]
  /frameworks/av/media/libaaudio/tests/
test_recovery.cpp 30 aaudio_result_t result = AAUDIO_OK; local
51 result = AAudio_createStreamBuilder(&aaudioBuilder);
52 if (result != AAUDIO_OK) {
54 AAudio_convertResultToText(result));
63 result = AAudioStreamBuilder_openStream(aaudioBuilder, &aaudioStream);
64 if (result != AAUDIO_OK) {
66 AAudio_convertResultToText(result));
88 result = AAudioStream_requestStart(aaudioStream);
89 if (result != AAUDIO_OK) {
91 AAudio_convertResultToText(result));
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerToStringTest.java 39 String result = aNumber.toString(45); local
40 assertTrue(result.equals(value));
50 String result = aNumber.toString(radix); local
51 assertTrue(result.equals(value));
61 String result = aNumber.toString(radix); local
62 assertTrue(result.equals(value));
72 String result = aNumber.toString(radix); local
73 assertTrue(result.equals(value));
83 String result = aNumber.toString(radix); local
84 assertTrue(result.equals(value))
94 String result = aNumber.toString(radix); local
105 String result = aNumber.toString(radix); local
116 String result = aNumber.toString(radix); local
127 String result = aNumber.toString(radix); local
138 String result = aNumber.toString(radix); local
149 String result = aNumber.toString(radix); local
    [all...]
  /prebuilts/go/darwin-x86/test/
defer.go 13 var result string var
15 func addInt(i int) { result += fmt.Sprint(i) }
24 result = ""
26 if result != "9876543210" {
27 fmt.Printf("test1: bad defer result (should be 9876543210): %q\n", result)
32 func addDotDotDot(v ...interface{}) { result += fmt.Sprint(v...) }
41 result = ""
43 if result != "9876543210" {
44 fmt.Printf("test2: bad defer result (should be 9876543210): %q\n", result
    [all...]
  /prebuilts/go/linux-x86/test/
defer.go 13 var result string var
15 func addInt(i int) { result += fmt.Sprint(i) }
24 result = ""
26 if result != "9876543210" {
27 fmt.Printf("test1: bad defer result (should be 9876543210): %q\n", result)
32 func addDotDotDot(v ...interface{}) { result += fmt.Sprint(v...) }
41 result = ""
43 if result != "9876543210" {
44 fmt.Printf("test2: bad defer result (should be 9876543210): %q\n", result
    [all...]
  /external/testng/src/main/java/org/testng/internal/annotations/
JDK15TagFactory.java 51 IAnnotation result = null; local
55 result = createConfigurationTag(cls, a);
58 result = createDataProviderTag(a);
61 result = createExpectedExceptionsTag(a);
64 result = createFactoryTag(cls, a);
67 result = createParametersTag(a);
70 result = createObjectFactoryTag(a);
73 result = createTestTag(cls, a, transformer);
76 result = createListenersTag(cls, a, transformer);
84 result = maybeCreateNewConfigurationTag(cls, a, annotationClass)
99 IAnnotation result = null; local
259 ConfigurationAnnotation result = new ConfigurationAnnotation(); local
297 ConfigurationAnnotation result = new ConfigurationAnnotation(); local
326 DataProviderAnnotation result = new DataProviderAnnotation(); local
336 ExpectedExceptionsAnnotation result = new ExpectedExceptionsAnnotation (); local
345 FactoryAnnotation result = new FactoryAnnotation(); local
362 ParametersAnnotation result = new ParametersAnnotation(); local
373 ListenersAnnotation result = new ListenersAnnotation(); local
384 TestAnnotation result = new TestAnnotation(); local
423 List<String> result = Lists.newArrayList(strings); local
476 T result = (T) invokeMethod(annotation, methodName); local
500 List<String> result = Lists.newArrayList(); local
517 Object result = null; local
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/Arm/
floatunsidf.c 62 rep_t result; local
66 result = (rep_t)a << shift ^ implicitBit;
69 result += (rep_t)(exponent + exponentBias) << significandBits;
70 return fromRep(result);
  /external/clang/test/Analysis/
undef-buffers.c 32 char result = buf[1]; // expected-warning{{undefined}} local
34 return result;
40 char result = buf[0]; // expected-warning{{undefined}} local
42 return result;

Completed in 1084 milliseconds

<<21222324252627282930>>