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

1 2

  /libcore/luni/src/test/java/libcore/java/util/logging/
OldSimpleFormatterTest.java 25 SimpleFormatter sf = new SimpleFormatter(); field in class:OldSimpleFormatterTest
28 assertEquals("Head for this SimpleFormatter should be empty", "", sf.getHead(null));
29 assertEquals("Tail for this SimpleFormatter should be empty", "", sf.getTail(null));
  /libcore/luni/src/test/java/tests/api/javax/net/
ServerSocketFactoryTest.java 57 ServerSocketFactory sf = new MyServerSocketFactory(); local
73 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
75 ServerSocket ss = sf.createServerSocket();
93 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
97 ServerSocket ss = sf.createServerSocket(portNumber);
104 sf.createServerSocket(portNumber);
113 sf.createServerSocket(-1);
132 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
136 ServerSocket ss = sf.createServerSocket(portNumber, 0);
143 sf.createServerSocket(portNumber, 0)
171 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
210 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
    [all...]
SocketFactoryTest.java 60 MySocketFactory sf = new MySocketFactory(); local
76 SocketFactory sf = SocketFactory.getDefault(); local
79 Socket s = sf.createSocket();
107 SocketFactory sf = SocketFactory.getDefault(); local
113 Socket s = sf.createSocket(InetAddress.getLocalHost().getHostName(), sport);
121 Socket s = sf.createSocket("bla-bla", sport);
131 Socket s = sf.createSocket(InetAddress.getLocalHost().getHostName(), invalidPorts[i]);
141 Socket s = sf.createSocket(InetAddress.getLocalHost().getHostName(), portNumber);
165 SocketFactory sf = SocketFactory.getDefault(); local
171 Socket s = sf.createSocket(InetAddress.getLocalHost(), sport)
215 SocketFactory sf = SocketFactory.getDefault(); local
279 SocketFactory sf = SocketFactory.getDefault(); local
344 SocketFactory sf = SocketFactory.getDefault(); local
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLSocketFactoryTest.java 61 SocketFactory sf = SSLSocketFactory.getDefault(); local
62 assertTrue(sf instanceof SSLSocketFactory);
92 SSLSocketFactory sf = (SSLSocketFactory)SSLSocketFactory.getDefault(); local
99 Socket s = sf.createSocket(st, "localhost", sport, false);
106 Socket s = sf.createSocket(st, "localhost", sport, true);
113 sf.createSocket(null, "localhost", sport, true);
122 Socket s = sf.createSocket(new Socket(), "localhost", 1080, false);
131 Socket s = sf.createSocket(st, "bla-bla", sport, false);
151 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault(); local
153 sf.getDefaultCipherSuites().length > 0)
170 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault(); local
    [all...]
HttpsURLConnectionTest.java 164 SSLSocketFactory sf = HttpsURLConnection.getDefaultSSLSocketFactory(); local
165 if (!sf.equals(SSLSocketFactory.getDefault())) {
313 SSLSocketFactory sf = con.getSSLSocketFactory(); local
314 if (!sf.equals(SSLSocketFactory.getDefault())) {
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLSessions.java 63 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault(); local
64 SSLSocket ssl = (SSLSocket) sf.createSocket();
  /external/apache-http/src/org/apache/http/impl/conn/
DefaultClientConnectionOperator.java 126 final SocketFactory sf = schm.getSocketFactory(); local
129 if (sf instanceof LayeredSocketFactory) {
131 layered_sf = (LayeredSocketFactory)sf;
133 plain_sf = sf;
171 conn.openCompleted(sf.isSecure(layeredsock), params);
173 conn.openCompleted(sf.isSecure(sock), params);
  /external/libpcap/
pcap-snoop.c 203 struct snoopfilter sf; local
232 memset(&sf, 0, sizeof(sf));
233 if (ioctl(fd, SIOCADDSNOOP, &sf) < 0) {
pcap-int.h 165 struct pcap_sf sf; member in struct:pcap
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSocketFactoryTest.java 33 SocketFactory sf = SSLSocketFactory.getDefault(); local
34 assertNotNull(sf);
35 assertTrue(SSLSocketFactory.class.isAssignableFrom(sf.getClass()));
39 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault(); local
40 String[] cipherSuites = sf.getDefaultCipherSuites();
42 assertNotSame(cipherSuites, sf.getDefaultCipherSuites());
46 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault(); local
47 String[] cipherSuites = sf.getSupportedCipherSuites();
49 assertNotSame(cipherSuites, sf.getSupportedCipherSuites());
54 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault() local
61 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault(); local
72 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault(); local
    [all...]
SSLContextTest.java 142 SocketFactory sf = sslContext.getSocketFactory(); local
143 assertNotNull(sf);
144 assertTrue(SSLSocketFactory.class.isAssignableFrom(sf.getClass()));
  /cts/tests/tests/net/src/android/net/cts/
SSLCertificateSocketFactoryTest.java 69 SocketFactory sf = SSLCertificateSocketFactory.getDefault(mTimeout); local
70 assertNotNull(sf);
  /external/e2fsprogs/misc/
chattr.c 71 static unsigned long sf; variable
173 sf |= fl;
209 print_flags (stdout, sf, 0);
212 if (fsetflags (name, sf) == -1)
  /external/libgsm/src/
lpc.c 158 register float *sf = s_f; local
160 for (i = 0; i < 160; ++i) sf[i] = s[i];
163 register float *sfl = sf - k;
164 for (i = k; i < 160; ++i) L_temp2 += sf[i] * sfl[i];
  /external/ppp/pppd/include/
pcap-int.h 75 struct pcap_sf sf; member in struct:pcap
  /external/ppp/pppd/plugins/radius/
buildreq.c 95 FILE *sf; local
100 if ((sf = fopen(seqfile, "a+")) == NULL)
107 while (do_lock_exclusive(fileno(sf))!= 0)
111 fclose(sf);
123 fclose(sf);
127 pos = ftell(sf);
128 rewind(sf);
129 if (fscanf(sf, "%d", &seq_nbr) != 1) {
130 if (pos != ftell(sf)) {
137 rewind(sf);
    [all...]
  /external/oprofile/daemon/
opd_ibs.c 38 extern int sfile_equal(struct sfile const * sf, struct sfile const * sf2);
550 static int ibs_sfile_create(struct sfile * sf)
553 sf->ext_files = xmalloc(ibs_selected_size * sizeof(odb_t));
555 odb_init(&sf->ext_files[i]);
574 static int ibs_sfile_close(struct sfile * sf)
577 if (sf->ext_files != NULL) {
579 odb_close(&sf->ext_files[i]);
581 free(sf->ext_files);
582 sf->ext_files= NULL;
587 static int ibs_sfile_sync(struct sfile * sf)
599 struct sfile * sf = trans->current; local
    [all...]
opd_sfile.c 82 do_match(struct sfile const * sf, cookie_t cookie, cookie_t app_cookie,
90 if (sf->kernel != ki)
94 if (sf->tid != tid || sf->tgid != tgid)
99 if (sf->cpu != cpu)
104 if (sf->app_cookie != app_cookie)
114 if (sf->anon != anon)
117 return sf->cookie == cookie;
131 sfile_equal(struct sfile const * sf, struct sfile const * sf2)
133 return do_match(sf, sf2->cookie, sf2->app_cookie, sf2->kernel
167 struct sfile * sf; local
222 struct sfile * sf; local
299 struct sfile * sf = trans->current; local
559 struct sfile * sf = list_entry(pos, struct sfile, lru); local
612 struct sfile * sf; local
    [all...]
  /libcore/luni/src/main/java/javax/xml/validation/
SchemaFactoryFinder.java 171 SchemaFactory sf; local
180 sf = createInstance(r);
181 if(sf!=null) return sf;
226 sf = createInstance(factoryClassName);
227 if(sf != null){
228 return sf;
245 sf = loadFromProperty(
247 if(sf!=null) return sf;
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/build/
SignedJarBuilder.java 252 // CERT.SF
255 mOutputJar.putNextEntry(new JarEntry("META-INF/CERT.SF"));
301 /** Writes a .SF file with a digest to the manifest. */
304 Manifest sf = new Manifest(); local
305 Attributes main = sf.getMainAttributes();
332 sf.getEntries().put(entry.getKey(), sfAttr);
335 sf.write(out);
  /bootable/recovery/applypatch/
applypatch.c 549 struct statfs sf; local
550 if (statfs(filename, &sf) != 0) {
554 return sf.f_bsize * sf.f_bfree;
  /build/tools/signapk/
SignApk.java 76 private static final String CERT_SF_NAME = "META-INF/CERT.SF";
81 Pattern.compile("^META-INF/(.*)[.](SF|RSA|DSA)$");
258 /** Write a .SF file with a digest of the specified manifest. */
261 Manifest sf = new Manifest(); local
262 Attributes main = sf.getMainAttributes();
289 sf.getEntries().put(entry.getKey(), sfAttr);
292 sf.write(out);
474 // CERT.SF
  /external/bluetooth/bluez/sbc/
sbc.c 166 uint8_t sf = frame->frequency; local
186 loudness = frame->scale_factor[ch][sb] - sbc_offset4[sf][sb];
188 loudness = frame->scale_factor[ch][sb] - sbc_offset8[sf][sb];
270 loudness = frame->scale_factor[ch][sb] - sbc_offset4[sf][sb];
272 loudness = frame->scale_factor[ch][sb] - sbc_offset8[sf][sb];
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_RLEaccel.c 1494 SDL_PixelFormat *sf = surface->format; local
1829 SDL_PixelFormat *sf = surface->format; local
    [all...]
  /external/svox/pico/lib/
picosig.c 745 picoos_uint32 sf; local
    [all...]

Completed in 693 milliseconds

1 2