Searched defs:howMany (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/tlslite/tlslite/utils/
H A Dwin32prng.c9 int howMany; local
16 if (!PyArg_ParseTuple(args, "i", &howMany))
30 bytes = malloc(howMany);
36 howMany,
40 returnVal = Py_BuildValue("s#", bytes, howMany);
H A Dentropy.c25 int howMany = 0; local
36 if (!PyArg_ParseTuple(args, "i", &howMany))
63 if ((bytes = (unsigned char*)PyMem_Malloc(howMany)) == NULL)
77 if(!pCryptGenRandom(hCryptProv, howMany, bytes)) {
86 returnVal = Py_BuildValue("s#", bytes, howMany);
106 int howMany; local
113 if (!PyArg_ParseTuple(args, "i", &howMany))
117 if ((bytes = (unsigned char*)PyMem_Malloc(howMany)) == NULL)
129 if (read(fd, bytes, howMany) < howMany) {
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DOneSizeTestContainerGenerator.java39 Collection<E> getSampleElements(int howMany); argument
H A DOneSizeGenerator.java72 public Collection<E> getSampleElements(int howMany) { argument
77 return new ArrayList<E>(allSampleElements.subList(0, howMany));
H A DAbstractContainerTester.java200 protected Collection<E> getSampleElements(int howMany) { argument
201 return getSubjectGenerator().getSampleElements(howMany);
H A DAbstractMapTester.java163 protected Collection<Map.Entry<K, V>> getSampleEntries(int howMany) { argument
164 return getSampleElements(howMany);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
H A DScheduler.java108 public boolean runTasks(int howMany) { argument
109 if (enqueuedTaskCount() < howMany) {
113 while (howMany > 0) {
117 howMany--;
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DTestCertUtils.java99 * @param howMany - shows how many TestCerts must contain the CertPath generated
103 public static CertPath genCertPath(int howMany, int startID) { argument
104 Certificate[] certs = new Certificate[howMany];
105 for (int i = 0; i < howMany; i++) {
766 * @param howMany
769 public static String[] genNames(int howMany) { argument
774 for (int i = 0; i < howMany;) {
815 * @param howMany
818 public static X500Principal[] genX500s(int howMany) { argument
819 String names[] = genNames(howMany);
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DSerializationStressTest2.java517 public DeepNesting(int howMany) { argument
520 for (int i = 1; i < howMany; i++) {
564 public DeepNestingWithWriteObject(int howMany) { argument
568 for (int i = 1; i < howMany; i++) {

Completed in 1119 milliseconds