/external/libchrome/crypto/ |
hmac.cc | 19 bool result = key->GetRawKey(&raw_key) && Init(raw_key); local 23 return result;
|
/external/libweave/third_party/libuweave/src/ |
crypto_hmac.c | 41 bool result = HMAC_Final(&context, digest, &len) && kFullDigestLen == len; local 43 if (result) { 46 return result;
|
/external/libxml2/python/tests/ |
reader7.py | 11 result = "" variable 13 global result 15 result = result + "%d %d %s %d\n" % (reader.Depth(), reader.NodeType(), 37 result = "" variable 49 if result != expect: 50 print("Unexpected result for test1") 51 print(result) 73 result = "" variable 85 if result != expect [all...] |
walker.py | 11 result = "" variable 13 global result 15 result = result + "%d %d %s %d\n" % (reader.Depth(), reader.NodeType(), 37 result = "" variable 50 if result != expect: 51 print("Unexpected result for test1") 52 print(result) 76 result = "" variable 90 if result != expect 116 result = "" variable [all...] |
/external/lzma/CPP/7zip/Common/ |
OffsetStream.cpp | 30 HRESULT result = _stream->Seek(offset, seekOrigin, &absoluteNewPosition);
local 33 return result;
|
/external/mdnsresponder/mDNSPosix/ |
ExampleClientApp.c | 54 int result; local 72 result = select(nfds, &readfds, NULL, NULL, &timeout); 74 if (result < 0) 76 verbosedebugf("select() returned %d errno %d", result, errno);
|
/external/nanopb-c/examples/network_server/ |
common.c | 20 int result; local 22 result = recv(fd, buf, count, MSG_WAITALL); 24 if (result == 0) 27 return result == count;
|
/external/objenesis/main/src/org/objenesis/instantiator/ |
SerializationInstantiatorHelper.java | 38 Class result = type;
local 39 while(Serializable.class.isAssignableFrom(result)) {
40 result = result.getSuperclass();
41 if(result == null) {
45 return result;
|
/external/opencv/cv/src/ |
cvkalman.cpp | 168 CvMat* result = 0; local 193 result = kalman->state_pre; 197 return result; 204 CvMat* result = 0; local 236 result = kalman->state_post; 240 return result;
|
/external/parameter-framework/upstream/utility/ |
Tokenizer.cpp | 44 vector<string> result; local 64 result.push_back(token); 74 result.push_back(token); 77 return result;
|
convert.hpp | 118 static inline bool convertTo(const std::string &str, T &result) 122 * with this type, thus that the result is undefined. */ 142 ss >> std::hex >> result; local 148 ss >> result; local 155 static inline bool convertToVia(const std::string &str, T &result) 159 * with this type, thus that the result is undefined. */ 164 * convertTo<Via> and then safely cast the result into a T. */ 175 result = static_cast<T>(res); 189 * Result may be modified, even in case of failure. 192 * @param[out] result reference to object where to store the result [all...] |
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
JsPromptResultTest.java | 15 JsPromptResult result = ShadowJsPromptResult.newInstance(); local 16 assertNotNull(result);
|
/external/sfntly/cpp/src/test/ |
platform_thread.cc | 45 DWORD result = WaitForSingleObject(thread_handle, INFINITE); local 46 assert(result == WAIT_OBJECT_0);
|
/external/skia/debugger/ |
debuggermain.cpp | 69 int result = a.exec(); local 70 return result;
|
/external/skia/src/core/ |
SkTTopoSort.h | 34 bool SkTTopoSort_Visit(T* node, SkTDArray<T*>* result) { 41 // (and all the nodes it depends on) are already in 'result'. 47 if (!SkTTopoSort_Visit<T, Traits>(Traits::Dependency(node, i), result)) { 51 Traits::Output(node, result->count()); // mark this node as output 54 *result->append() = node; 61 // on node 'j' it means node 'j' must appear in the result before node 'i'. 66 // static void Output(T* t, int index) { ... } // 'index' is 't's position in the result 82 SkTDArray<T*> result; local 88 result.setReserve(graph->count()); 98 if (!SkTTopoSort_Visit<T, Traits>((*graph)[i], &result)) { [all...] |
/external/skia/tests/ |
CodecPriv.h | 33 const SkCodec::Result result = codec->getPixels(codec->getInfo(), bm->getPixels(), local 35 return result == SkCodec::kSuccess || result == SkCodec::kIncompleteInput;
|
Test.cpp | 24 SkString result = SkStringPrintf("%s:%d\t", this->fileName, this->lineNo); local 26 result.append(this->message); 28 result.append(": "); 31 result.append(this->condition); 32 return result;
|
/external/strace/tests/ |
llseek.c | 46 unsigned long long result; local 47 int rc = syscall(__NR__llseek, -1, high, low, &result, SEEK_SET); 53 offset, &result);
|
/external/testng/src/main/java/org/testng/log/ |
TextFormatter.java | 18 StringBuffer result = new StringBuffer(); local 20 result.append(record.getMessage()).append("\n"); 22 return result.toString();
|
/external/testng/src/test/java/test/methodinterceptors/ |
FastTestsFirstInterceptor.java | 18 List<IMethodInstance> result = new ArrayList<>(); local 26 result.add(0, m); 29 result.add(m); 32 return result;
|
/external/testng/src/test/java/test/retryAnalyzer/ |
MyFactory.java | 9 Object[] result = new Object[num]; local 12 result[i] = obj; 14 return result;
|
/external/testng/src/test/java/test/thread/ |
BaseSequentialSample.java | 13 Map result = Helper.getMap(getClass().getName());
local 14 ppp("RETURNING MAP " + result + " THIS:" + this);
16 return result;
|
/external/testng/src/test/java/test/verify/ |
VerifyMethodInterceptor.java | 14 List<IMethodInstance> result = Lists.newArrayList(); local 19 // the result. Obviously, this can be done with just one loop 27 // Create the result with each @Verify method followed by a call 31 result.add(m); 35 result.add(verifier); 39 return result;
|
/external/tpm2/ |
Duplicate.c | 32 TPM_RC result = TPM_RC_SUCCESS; local 93 result = CryptSecretEncrypt(in->newParentHandle, 95 pAssert(result != TPM_RC_VALUE); 96 if(result != TPM_RC_SUCCESS) 97 return result;
|
Load.c | 38 TPM_RC result = TPM_RC_SUCCESS; local 70 result = PublicAttributesValidation(TRUE, in->parentHandle, 72 if(result != TPM_RC_SUCCESS) 73 return RcSafeAddToResult(result, RC_Load_inPublic); 82 result = PrivateToSensitive(&in->inPrivate, &out->name, in->parentHandle, 85 if(result != TPM_RC_SUCCESS) 86 return RcSafeAddToResult(result, RC_Load_inPrivate); 96 result = ObjectLoad(hierarchy, &in->inPublic.t.publicArea, &sensitive, 100 if(result != TPM_RC_SUCCESS) 101 return result; [all...] |