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

1 2 3 4 5 6 7

  /external/oprofile/daemon/
opd_mangling.c 37 static char const * get_dep_name(struct sfile const * sf)
39 if (sf->anon)
40 return find_cookie(sf->app_cookie);
43 if (sf->cookie == sf->app_cookie)
46 if (!separate_kernel && !(separate_lib && !sf->kernel))
50 if (sf->app_cookie == 0)
53 return find_cookie(sf->app_cookie);
69 mangle_filename(struct sfile * last, struct sfile const * sf, int counter, int cg)
77 if (sf->kernel)
    [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...]
opd_mangling.h 21 * @param sf sfile to open sample file for
31 struct sfile * sf, int counter, int cg);
opd_extended.h 80 extern void opd_ext_sfile_create(struct sfile * sf);
82 extern void opd_ext_sfile_close(struct sfile * sf);
83 extern void opd_ext_sfile_sync(struct sfile * sf);
opd_extended.c 139 void opd_ext_sfile_create(struct sfile * sf)
144 ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->create(sf);
157 void opd_ext_sfile_close (struct sfile * sf)
162 ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->close(sf);
166 void opd_ext_sfile_sync(struct sfile * sf)
171 ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->sync(sf);
opd_sfile.h 98 void sfile_get(struct sfile * sf);
101 void sfile_put(struct sfile * sf);
  /external/elfutils/src/
debugpred.h 42 const char **sf = &__start_predict_file; local
46 printf ("%s:%lu: wrong=%lu, correct=%lu%s\n", *sf, *sl, s[0], s[1],
49 ++sf;
  /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/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...]
  /libcore/luni/src/test/java/tests/api/javax/net/
ServerSocketFactoryTest.java 36 ServerSocketFactory sf = new MyServerSocketFactory(); local
40 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
41 ServerSocket ss = sf.createServerSocket();
47 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
48 ServerSocket ss = sf.createServerSocket(0);
52 sf.createServerSocket(ss.getLocalPort());
60 sf.createServerSocket(-1);
67 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
68 ServerSocket ss = sf.createServerSocket(0, 0);
72 sf.createServerSocket(ss.getLocalPort(), 0)
87 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
    [all...]
SocketFactoryTest.java 43 SocketFactory sf = SocketFactory.getDefault(); local
45 Socket s = sf.createSocket();
59 SocketFactory sf = SocketFactory.getDefault(); local
63 Socket s = sf.createSocket(InetAddress.getLocalHost().getHostName(), sport);
68 sf.createSocket("bla-bla", sport);
75 sf.createSocket(InetAddress.getLocalHost().getHostName(), invalidPorts[i]);
82 sf.createSocket(InetAddress.getLocalHost().getHostName(), s.getLocalPort());
96 SocketFactory sf = SocketFactory.getDefault(); local
100 Socket s = sf.createSocket(InetAddress.getLocalHost(), sport);
106 sf.createSocket(InetAddress.getLocalHost(), invalidPorts[i])
127 SocketFactory sf = SocketFactory.getDefault(); local
173 SocketFactory sf = SocketFactory.getDefault(); local
214 SocketFactory sf = SocketFactory.getDefault(); local
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/
SocketFactoryTest.java 42 SocketFactory sf = new MySocketFactory(); local
44 sf.createSocket();
56 SocketFactory sf = SocketFactory.getDefault(); local
58 if (!(sf instanceof DefaultSocketFactory)) {
62 s = sf.createSocket("localhost", 8082);
67 s = sf.createSocket("localhost", 8081, InetAddress.getLocalHost(), 8082);
72 s = sf.createSocket(InetAddress.getLocalHost(), 8081);
77 s = sf.createSocket(InetAddress.getLocalHost(), 8081, InetAddress.getLocalHost(), 8082);
ServerSocketFactoryTest.java 42 ServerSocketFactory sf = new MyServerSocketFactory(); local
44 sf.createServerSocket();
56 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
58 if (!(sf instanceof DefaultServerSocketFactory)) {
62 s = sf.createServerSocket(0);
67 s = sf.createServerSocket(0, 50);
72 s = sf.createServerSocket(0, 50, InetAddress.getLocalHost());
  /prebuilts/tools/common/cglib/
cglib-nodep-2.2.3.jar 
cglib-2.2.3.jar 
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLSocketFactoryTest.java 46 SocketFactory sf = SSLSocketFactory.getDefault(); local
47 assertTrue(sf instanceof SSLSocketFactory);
65 SSLSocketFactory sf = (SSLSocketFactory)SSLSocketFactory.getDefault(); local
72 Socket s = sf.createSocket(st, "localhost", sport, false);
79 Socket s = sf.createSocket(st, "localhost", sport, true);
86 sf.createSocket(null, "localhost", sport, true);
95 Socket s = sf.createSocket(new Socket(), "localhost", 1080, false);
104 Socket s = sf.createSocket(st, "bla-bla", sport, false);
118 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault(); local
120 sf.getDefaultCipherSuites().length > 0)
131 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault(); local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
cor_h_x.h 90 Word16 sf, /* (i): scaling factor: 2 for 12.2, 1 for others */
cor_h_x2.h 109 Word16 sf, /* (i): scaling factor: 2 for 12.2, 1 for others */
  /libcore/luni/src/main/java/javax/net/ssl/
HttpsURLConnection.java 138 * @param sf
143 public static void setDefaultSSLSocketFactory(SSLSocketFactory sf) {
144 if (sf == null) {
147 defaultSSLSocketFactory = sf;
275 * @param sf
280 public void setSSLSocketFactory(SSLSocketFactory sf) {
281 if (sf == null) {
284 sslSocketFactory = sf;
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
SimpleFormatterTest.java 33 SimpleFormatter sf; field in class:SimpleFormatterTest
44 sf = new SimpleFormatter();
50 sf.format(null);
54 sf.format(new LogRecord(Level.SEVERE, null));
64 String str = sf.format(lr);
71 str = sf.format(lr);
77 String str = sf.format(lr);
96 str = sf.format(lr);
108 assertEquals("", sf.getHead(null));
112 assertEquals("", sf.getTail(null))
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/
OkHttpsConnection.java 142 * @param sf
147 public static void setDefaultSSLSocketFactory(SSLSocketFactory sf) {
148 if (sf == null) {
151 defaultSSLSocketFactory = sf;
279 * @param sf
284 public void setSSLSocketFactory(SSLSocketFactory sf) {
285 if (sf == null) {
288 sslSocketFactory = sf;
  /external/valgrind/main/none/tests/x86/
aad_aam.c 21 int cf __attribute__((unused)),pf,af __attribute__((unused)),zf,sf; local
43 sf=!!(flags&0x80);
47 // printf("%x CF=%d PF=%d AF=%d ZF=%d SF=%d OF=%d\n",
48 // flags,cf,pf,af,zf,sf,of);
56 if (sf != !!(out&0x80)) {
57 printf("Error with aam (sf)!\n");
90 sf=!!(flags&0x80);
94 // printf("%x CF=%d PF=%d AF=%d ZF=%d SF=%d OF=%d\n",
95 // flags,cf,pf,af,zf,sf,of);
103 if (sf != !!(out&0x80))
    [all...]
  /external/clang/test/Index/
complete-memfunc-cvquals.cpp 18 smart_ptr<Foo> sf, const smart_ptr<Foo> &sfc, Foo volatile *fvp) {
23 sf->bar();
  /external/qemu/target-i386/
helper_template.h 57 int cf, pf, af, zf, sf, of; local
65 sf = lshift(CC_DST, 8 - DATA_BITS) & 0x80;
67 return cf | pf | af | zf | sf | of;
81 int cf, pf, af, zf, sf, of;
89 sf = lshift(CC_DST, 8 - DATA_BITS) & 0x80;
91 return cf | pf | af | zf | sf | of;
105 int cf, pf, af, zf, sf, of;
113 sf = lshift(CC_DST, 8 - DATA_BITS) & 0x80;
115 return cf | pf | af | zf | sf | of;
130 int cf, pf, af, zf, sf, of
    [all...]
  /external/libvpx/vp8/encoder/
onyx_if.c 541 SPEED_FEATURES *sf = &cpi->sf; local
546 int last_improved_quant = sf->improved_quant;
559 sf->RD = 1;
560 sf->search_method = NSTEP;
561 sf->improved_quant = 1;
562 sf->improved_dct = 1;
563 sf->auto_filter = 1;
564 sf->recode_loop = 1;
565 sf->quarter_pixel_search = 1
    [all...]

Completed in 551 milliseconds

1 2 3 4 5 6 7