HomeSort by relevance Sort by last modified time
    Searched defs:gets (Results 1 - 25 of 26) sorted by null

1 2

  /bionic/libc/upstream-openbsd/lib/libc/stdio/
gets.c 1 /* $OpenBSD: gets.c,v 1.12 2009/11/09 00:18:27 kurt Exp $ */
37 __warn_references(gets,
38 "warning: gets() is very unsafe; consider using fgets()");
41 gets(char *buf) function
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
gets.c 2 Implementation of gets as declared in <stdio.h>.
43 NetBSD: gets.c,v 1.15 2003/08/07 16:43:27 agc Exp
44 gets.c 8.1 (Berkeley) 6/4/93
54 __warn_references(gets, "warning: this program uses gets(), which is unsafe.")
57 gets(char *buf) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/lib/gcc/x86_64-linux/4.8/include/ssp/
stdio.h 49 #undef gets macro
77 extern char *__SSP_REDIRECT (__gets_alias, (char *__str), gets);
80 gets (char *__str) function
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/ssp/
stdio.h 49 #undef gets macro
77 extern char *__SSP_REDIRECT (__gets_alias, (char *__str), gets);
80 gets (char *__str) function
  /external/conscrypt/common/src/jni/main/include/conscrypt/
bio_input_stream.h 36 int gets(char *buf, int len) { function in class:conscrypt::BioInputStream
43 JNI_TRACE("BIO::gets \"%s\"", buf);
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLBIOInputStream.java 49 int gets(byte[] buffer) throws IOException { method in class:OpenSSLBIOInputStream
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
addressed.go 162 y.gets(&b)
165 y.gets(&c)
169 z.gets(&e)
174 y.gets(&f)
178 z.gets(&h)
189 // gets is an address-mentioning way of implementing
192 func (to *V) gets(from *V) { func
196 // gets is an address-and-interface-mentioning way of
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
addressed.go 162 y.gets(&b)
165 y.gets(&c)
169 z.gets(&e)
174 y.gets(&f)
178 z.gets(&h)
189 // gets is an address-mentioning way of implementing
192 func (to *V) gets(from *V) { func
196 // gets is an address-and-interface-mentioning way of
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
stdio2.h 221 extern char *__REDIRECT (__gets_warn, (char *__str), gets)
222 __wur __warnattr ("please use fgets or getline instead, gets can't "
226 gets (char *__str) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
stdio2.h 221 extern char *__REDIRECT (__gets_warn, (char *__str), gets)
222 __wur __warnattr ("please use fgets or getline instead, gets can't "
226 gets (char *__str) function
  /test/vti/dashboard/src/main/java/com/android/vts/api/
TestRunRestServlet.java 79 List<Key> gets = new ArrayList<>(); local
81 gets.add(KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseId));
83 Map<Key, Entity> entityMap = datastore.get(gets);
117 List<Key> gets = new ArrayList<>(); local
119 gets.add(KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseId));
121 Map<Key, Entity> entityMap = datastore.get(gets);
  /test/vti/dashboard/src/main/java/com/android/vts/servlet/
ShowCoverageOverviewServlet.java 109 List<Key> gets = local
117 Map<Key, Entity> entityMap = datastore.get(gets);
118 for (Key entityKey : gets) {
ShowPlanReleaseServlet.java 156 List<Key> gets = local
164 Map<Key, Entity> entityMap = datastore.get(gets);
165 for (Key key : gets) {
ShowTableServlet.java 72 List<Key> gets = new ArrayList<>(); local
74 gets.add(KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseId));
78 Map<Key, Entity> entityMap = datastore.get(gets);
79 for (Key key : gets) {
163 List<Key> gets = local
171 Map<Key, Entity> entityMap = datastore.get(gets);
172 for (Key key : gets) {
ShowGraphServlet.java 163 List<Key> gets = new ArrayList<>(); local
168 gets.add(
172 Map<Key, Entity> profilingPoints = datastore.get(gets);
194 gets = new ArrayList<>();
198 gets.add(device.getKey());
202 Map<Key, Entity> deviceInfos = datastore.get(gets);
ShowTreeServlet.java 84 List<Key> gets = new ArrayList<>(); local
86 gets.add(KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseId));
88 Map<Key, Entity> entityMap = datastore.get(gets);
177 List<Key> gets = local
185 Map<Key, Entity> entityMap = datastore.get(gets);
186 for (Key key : gets) {
  /external/deqp/modules/gles31/functional/
es31fAtomicCounterTests.cpp 120 bool checkAndLogCallValues (TestLog& log, const vector<deUint32>& increments, const vector<deUint32>& decrements, const vector<deUint32>& preGets, const vector<deUint32>& postGets, const vector<deUint32>& gets) const;
121 void splitBuffer (const vector<deUint32>& buffer, vector<deUint32>& increments, vector<deUint32>& decrements, vector<deUint32>& preGets, vector<deUint32>& postGets, vector<deUint32>& gets) const;
557 void AtomicCounterTest::splitBuffer (const vector<deUint32>& buffer, vector<deUint32>& increments, vector<deUint32>& decrements, vector<deUint32>& preGets, vector<deUint32>& postGets, vector<deUint32>& gets) const
571 gets.clear();
627 gets.push_back(buffer[firstGet + id]);
806 bool AtomicCounterTest::checkAndLogCallValues (TestLog& log, const vector<deUint32>& increments, const vector<deUint32>& decrements, const vector<deUint32>& preGets, const vector<deUint32>& postGets, const vector<deUint32>& gets) const
822 getCountersValues(counterGets, gets, counterNdx, m_spec.atomicCounterCount);
829 for (int valueNdx = 0; valueNdx < (int)gets.size(); valueNdx++)
831 if ((!m_spec.useBranches || gets[valueNdx] != (deUint32)-1) && gets[valueNdx] != getInitialValue()
1034 vector<deUint32> gets; local
    [all...]
  /test/vti/dashboard/src/main/java/com/android/vts/job/
VtsAlertJobServlet.java 85 Set<Key> gets = new HashSet<>(); local
87 gets.add(KeyFactory.createKey(TestCaseRunEntity.KIND, testCaseRef.parentId));
89 if (gets.size() == 0) {
92 Map<Key, Entity> testCaseMap = datastore.get(gets);
  /test/vti/dashboard/src/main/java/com/android/vts/util/
FilterUtil.java 507 List<Key> gets = new ArrayList<>(allMatchingKeys); local
509 gets.sort(Comparator.reverseOrder());
511 gets.sort(Comparator.naturalOrder());
513 gets = gets.subList(0, Math.min(gets.size(), maxSize));
514 return gets;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
strsafe.h 2067 #undef gets macro
2068 #define gets macro
    [all...]
pthread.h 577 #define gets(...) (pthread_testcancel(), gets(__VA_ARGS__)) macro
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-r1.jar 
android-all-8.0.0_r4-robolectric-r1.jar 
android-all-8.1.0-robolectric-r4458339.jar 

Completed in 750 milliseconds

1 2