Home
last modified time | relevance | path

Searched refs:outKey (Results 1 – 25 of 223) sorted by relevance

123456789

/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/io/file/tfile/
H A DTestTFileStreams.java201 outKey.close(); in testFailureKeyTooLong()
216 outKey.close(); in testFailureKeyTooShort()
235 outKey.close(); in testFailureValueTooLong()
247 outKey.close(); in testFailureValueTooLong()
248 outKey.close(); in testFailureValueTooLong()
261 outKey.close(); in testFailureValueTooShort()
277 outKey.close(); in testFailureCloseKeyStreamManyTimesInWriter()
290 outKey.close(); in testFailureCloseKeyStreamManyTimesInWriter()
291 outKey.close(); in testFailureCloseKeyStreamManyTimesInWriter()
319 outKey.close(); in testFailureKeyLongerThan64K_2()
[all …]
/dports/devel/hadoop/hadoop-1.2.1/src/test/org/apache/hadoop/io/file/tfile/
H A DTestTFileStreams.java202 outKey.close(); in testFailureKeyTooLong()
217 outKey.close(); in testFailureKeyTooShort()
236 outKey.close(); in testFailureValueTooLong()
248 outKey.close(); in testFailureValueTooLong()
249 outKey.close(); in testFailureValueTooLong()
262 outKey.close(); in testFailureValueTooShort()
278 outKey.close(); in testFailureCloseKeyStreamManyTimesInWriter()
291 outKey.close(); in testFailureCloseKeyStreamManyTimesInWriter()
292 outKey.close(); in testFailureCloseKeyStreamManyTimesInWriter()
320 outKey.close(); in testFailureKeyLongerThan64K_2()
[all …]
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/crypto/
H A DCipherOption.java31 private final byte[] outKey; field in CipherOption
39 byte[] outKey, byte[] outIv) { in CipherOption() argument
43 this.outKey = outKey; in CipherOption()
60 return outKey; in getOutKey()
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/protocol/datatransfer/sasl/
H A DDataTransferSaslUtil.java280 byte[] outKey = new byte[keyLen]; in negotiateCipherOption()
284 codec.generateSecureRandom(outKey); in negotiateCipherOption()
343 byte[] outKey = cipherOption.getOutKey(); in createStreamPair()
448 byte[] outKey = option.getOutKey(); in wrap()
449 if (outKey != null) { in wrap()
450 outKey = sasl.wrap(outKey, 0, outKey.length); in wrap()
453 outKey, option.getOutIv()); in wrap()
475 byte[] outKey = option.getOutKey(); in unwrap()
476 if (outKey != null) { in unwrap()
477 outKey = sasl.unwrap(outKey, 0, outKey.length); in unwrap()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mailnews/db/mork/
H A DmorkProbeMap.h385 mork_bool IterFirst(morkEnv* ev, void* outKey, void* outVal);
386 mork_bool IterNext(morkEnv* ev, void* outKey, void* outVal);
387 mork_bool IterHere(morkEnv* ev, void* outKey, void* outVal);
392 void* IterFirstVal(morkEnv* ev, void* outKey);
395 void* IterNextVal(morkEnv* ev, void* outKey);
398 void* IterHereVal(morkEnv* ev, void* outKey);
414 mork_change* First(morkEnv* ev, void* outKey, void* outVal);
415 mork_change* Next(morkEnv* ev, void* outKey, void* outVal);
416 mork_change* Here(morkEnv* ev, void* outKey, void* outVal);
418 mork_change* CutHere(morkEnv* ev, void* outKey, void* outVal);
H A DmorkMap.cpp247 if (outKey) /* caller wants the key? */ in get_assoc()
252 *((mork_ip*)outKey) = *((const mork_ip*)key); in get_assoc()
254 MORK_MEMCPY(outKey, key, keySize); in get_assoc()
518 this->get_assoc(outKey, outVal, i); in Put()
562 mork_bool morkMap::Cut(morkEnv* ev, const void* inKey, void* outKey, in Cut() argument
575 if (outKey || outVal) this->get_assoc(outKey, outVal, i); in Cut()
611 this->get_assoc(outKey, outVal, i); in Get()
710 map->get_assoc(outKey, outVal, i); in First()
776 map->get_assoc(outKey, outVal, i); in Next()
803 map->get_assoc(outKey, outVal, i); in Here()
[all …]
H A DmorkMap.h289 void get_assoc(void* outKey, void* outVal, mork_pos inPos) const;
315 mork_bool Put(morkEnv* ev, const void* inKey, const void* inVal, void* outKey,
318 mork_bool Cut(morkEnv* ev, const void* inKey, void* outKey, void* outVal,
321 mork_bool Get(morkEnv* ev, const void* inKey, void* outKey, void* outVal,
370 mork_change* First(morkEnv* ev, void* outKey, void* outVal);
371 mork_change* Next(morkEnv* ev, void* outKey, void* outVal);
372 mork_change* Here(morkEnv* ev, void* outKey, void* outVal);
374 mork_change* CutHere(morkEnv* ev, void* outKey, void* outVal);
H A DmorkProbeMap.cpp985 if (this->IterFirst(ev, outKey, outVal)) return &sProbeMapIter_Change; in First()
990 mork_change* morkProbeMapIter::Next(morkEnv* ev, void* outKey, void* outVal) { in Next() argument
991 if (this->IterNext(ev, outKey, outVal)) return &sProbeMapIter_Change; in Next()
997 if (this->IterHere(ev, outKey, outVal)) return &sProbeMapIter_Change; in Here()
1002 mork_change* morkProbeMapIter::CutHere(morkEnv* ev, void* outKey, in CutHere() argument
1014 void* morkProbeMapIter::IterFirstVal(morkEnv* ev, void* outKey) in IterFirstVal() argument
1021 this->IterFirst(ev, outKey, &v); in IterFirstVal()
1029 void* morkProbeMapIter::IterNextVal(morkEnv* ev, void* outKey) in IterNextVal() argument
1036 this->IterNext(ev, outKey, &v); in IterNextVal()
1044 void* morkProbeMapIter::IterHereVal(morkEnv* ev, void* outKey) in IterHereVal() argument
[all …]
/dports/security/keybase/client-v5.7.1/go/libkb/
H A Dnaclwrap.go621 var outKey = [32]byte{}
629 return outKey, err
633 if copy(outKey[:], out) != len(outKey) {
637 return outKey, nil
645 var outKey = [32]byte{}
653 return outKey, err
657 if copy(outKey[:], out) != len(outKey) {
661 return outKey, nil
676 return outKey, err
680 if copy(outKey[:], out) != len(outKey) {
[all …]
/dports/sysutils/snmp_exporter/snmp_exporter-0.20.0/vendor/github.com/gosnmp/gosnmp/
H A Dmisc_test.go108 outKey []byte
121 if !bytes.Equal(result, test.outKey) {
122 t.Errorf("#%d, got %v expected %v", i, result, test.outKey)
130 outKey []byte
145 if !bytes.Equal(result, test.outKey) {
146 t.Errorf("#%d, got %v expected %v", i, result, test.outKey)
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/imaging/
H A DossimBandLutFilter.cpp271 ostringstream inKey, outKey; in saveState() local
273 outKey << base_keyword.str() << "entry" << entry <<".out"; in saveState()
280 kwl.add(prefix, outKey.str().c_str(), outVal.str().c_str()); in saveState()
341 ostringstream inKey, outKey; in initializeLut() local
345 outKey << "band" << band << ".entry" << entry <<".out"; in initializeLut()
350 outKey << "entry" << entry <<".out"; in initializeLut()
356 ossimString outVal = kwl.find(prefix, outKey.str().c_str()); in initializeLut()
/dports/devel/hadoop/hadoop-1.2.1/src/benchmarks/gridmix/monsterQuery/
H A Dmonster_query.large14 …nputFormat -outFormat org.apache.hadoop.mapred.SequenceFileOutputFormat -outKey org.apache.hadoop.…
20 …nputFormat -outFormat org.apache.hadoop.mapred.SequenceFileOutputFormat -outKey org.apache.hadoop.…
26 …nputFormat -outFormat org.apache.hadoop.mapred.SequenceFileOutputFormat -outKey org.apache.hadoop.…
H A Dmonster_query.small14 …nputFormat -outFormat org.apache.hadoop.mapred.SequenceFileOutputFormat -outKey org.apache.hadoop.…
20 …nputFormat -outFormat org.apache.hadoop.mapred.SequenceFileOutputFormat -outKey org.apache.hadoop.…
26 …nputFormat -outFormat org.apache.hadoop.mapred.SequenceFileOutputFormat -outKey org.apache.hadoop.…
H A Dmonster_query.medium14 …nputFormat -outFormat org.apache.hadoop.mapred.SequenceFileOutputFormat -outKey org.apache.hadoop.…
20 …nputFormat -outFormat org.apache.hadoop.mapred.SequenceFileOutputFormat -outKey org.apache.hadoop.…
26 …nputFormat -outFormat org.apache.hadoop.mapred.SequenceFileOutputFormat -outKey org.apache.hadoop.…
/dports/lang/spidermonkey78/firefox-78.9.0/netwerk/protocol/http/
H A DAlternateServices.cpp274 outKey.Truncate(); in MakeHashKey()
282 outKey.Append(':'); in MakeHashKey()
283 outKey.Append(originHost); in MakeHashKey()
284 outKey.Append(':'); in MakeHashKey()
286 outKey.Append(':'); in MakeHashKey()
288 outKey.Append(':'); in MakeHashKey()
291 outKey.Append(suffix); in MakeHashKey()
294 outKey.Append(':'); in MakeHashKey()
295 outKey.Append('I'); in MakeHashKey()
296 outKey.Append(':'); in MakeHashKey()
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/langtools/src/share/classes/com/sun/tools/javadoc/api/
H A DJavadocTool.java106 context.put(Log.outKey, new PrintWriter(System.err, true)); in getTask()
108 context.put(Log.outKey, ((PrintWriter) out)); in getTask()
110 context.put(Log.outKey, new PrintWriter(out, true)); in getTask()
136 context.put(Log.outKey, pw); in getStandardFileManager()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/langtools/src/share/classes/com/sun/tools/javadoc/api/
H A DJavadocTool.java106 context.put(Log.outKey, new PrintWriter(System.err, true)); in getTask()
108 context.put(Log.outKey, ((PrintWriter) out)); in getTask()
110 context.put(Log.outKey, new PrintWriter(out, true)); in getTask()
136 context.put(Log.outKey, pw); in getStandardFileManager()
/dports/audio/pms-devel/pms-c94e3c6/vendor/github.com/blevesearch/bleve/index/upsidedown/
H A Drow_test.go28 outKey []byte
118 if !reflect.DeepEqual(rk, test.outKey) {
119 t.Errorf("Expected key to be %v got: %v", test.outKey, rk)
129 row, err := ParseFromKeyValue(test.outKey, test.outVal)
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/main/java/org/apache/commons/math3/linear/
H A DOpenMapRealMatrix.java227 final int outKey = out.computeKey(i, j); in multiply() local
229 out.entries.get(outKey) + value * m.entries.get(rightKey); in multiply()
231 out.entries.remove(outKey); in multiply()
233 out.entries.put(outKey, outValue); in multiply()
/dports/emulators/tpm-emulator/tpm_emulator-0.7.4/mtm/
H A Dmtm_verification.c212 static int store_verification_key(TPM_VERIFICATION_KEY *inKey, MTM_KEY_DATA *outKey) in store_verification_key() argument
214 outKey->usageFlags = inKey->usageFlags; in store_verification_key()
215 outKey->parentId = inKey->parentId; in store_verification_key()
216 outKey->myId = inKey->myId; in store_verification_key()
217 outKey->keyAlgorithm = inKey->keyAlgorithm; in store_verification_key()
218 outKey->keyScheme = inKey->keyScheme; in store_verification_key()
221 if (tpm_unmarshal_RSAPub(&ptr, &len, &outKey->key) != 0) return -1; in store_verification_key()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/sun/security/ssl/internal/java.base/sun/security/ssl/
H A DTestHkdf.java204 private static boolean compareKeyAndData(SecretKey outKey, in compareKeyAndData() argument
208 if (Arrays.equals(outKey.getEncoded(), expectedOut)) { in compareKeyAndData()
216 dumpHexBytes(outKey.getEncoded(), 16, "\n", " ")); in compareKeyAndData()
/dports/security/cyrus-sasl2/cyrus-sasl-2.1.28/mac/CommonKClient/mac_kclient3/Headers/KClient/
H A DKClient.h124 KClientKey* outKey);
158 KClientKey* outKey);
242 KClientKey* outKey);
/dports/security/cyrus-sasl2-ldapdb/cyrus-sasl-2.1.28/mac/CommonKClient/mac_kclient3/Headers/KClient/
H A DKClient.h124 KClientKey* outKey);
158 KClientKey* outKey);
242 KClientKey* outKey);
/dports/security/cyrus-sasl2-sql/cyrus-sasl-2.1.28/mac/CommonKClient/mac_kclient3/Headers/KClient/
H A DKClient.h124 KClientKey* outKey);
158 KClientKey* outKey);
242 KClientKey* outKey);
/dports/security/cyrus-sasl2-gssapi/cyrus-sasl-2.1.28/mac/CommonKClient/mac_kclient3/Headers/KClient/
H A DKClient.h124 KClientKey* outKey);
158 KClientKey* outKey);
242 KClientKey* outKey);

123456789