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

1 2 3 4 5 6

  /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);
  /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...]
  /device/samsung/crespo/
system.prop 7 ro.sf.lcd_density=240
releasetools.py 89 sf = FindRadio(info.source_zip)
90 if not sf:
97 sf = common.File("radio.img", sf)
99 if tf.sha1 == sf.sha1:
102 diff = common.Difference(tf, sf)
118 sf.size, sf.sha1, tf.size, tf.sha1),
119 "-", tf.size, tf.sha1, sf.sha1, "radio.img.p")
  /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());
  /libcore/luni/src/test/java/tests/api/javax/net/
ServerSocketFactoryTest.java 46 ServerSocketFactory sf = new MyServerSocketFactory(); local
56 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
58 ServerSocket ss = sf.createServerSocket();
70 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
74 ServerSocket ss = sf.createServerSocket(portNumber);
81 sf.createServerSocket(portNumber);
90 sf.createServerSocket(-1);
103 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
107 ServerSocket ss = sf.createServerSocket(portNumber, 0);
114 sf.createServerSocket(portNumber, 0)
136 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
169 ServerSocketFactory sf = ServerSocketFactory.getDefault(); local
    [all...]
SocketFactoryTest.java 49 MySocketFactory sf = new MySocketFactory(); local
59 SocketFactory sf = SocketFactory.getDefault(); local
62 Socket s = sf.createSocket();
84 SocketFactory sf = SocketFactory.getDefault(); local
90 Socket s = sf.createSocket(InetAddress.getLocalHost().getHostName(), sport);
98 Socket s = sf.createSocket("bla-bla", sport);
108 Socket s = sf.createSocket(InetAddress.getLocalHost().getHostName(), invalidPorts[i]);
118 Socket s = sf.createSocket(InetAddress.getLocalHost().getHostName(), portNumber);
136 SocketFactory sf = SocketFactory.getDefault(); local
142 Socket s = sf.createSocket(InetAddress.getLocalHost(), sport)
180 SocketFactory sf = SocketFactory.getDefault(); local
238 SocketFactory sf = SocketFactory.getDefault(); local
297 SocketFactory sf = SocketFactory.getDefault(); local
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLSocketFactoryTest.java 49 SocketFactory sf = SSLSocketFactory.getDefault(); local
50 assertTrue(sf instanceof SSLSocketFactory);
68 SSLSocketFactory sf = (SSLSocketFactory)SSLSocketFactory.getDefault(); local
75 Socket s = sf.createSocket(st, "localhost", sport, false);
82 Socket s = sf.createSocket(st, "localhost", sport, true);
89 sf.createSocket(null, "localhost", sport, true);
98 Socket s = sf.createSocket(new Socket(), "localhost", 1080, false);
107 Socket s = sf.createSocket(st, "bla-bla", sport, false);
121 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault(); local
123 sf.getDefaultCipherSuites().length > 0)
134 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault(); local
    [all...]
  /frameworks/base/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 */
  /device/samsung/crespo4g/
system.prop 7 ro.sf.lcd_density=240
releasetools.py 61 sf = FindImage(info.source_zip, "bootloader")
65 elif sf and tf.sha1 == sf.sha1:
71 sf = FindImage(info.source_zip, "radio")
75 elif sf and tf.sha1 == sf.sha1:
  /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/bluetooth/glib/glib/
Makefile.am 346 for sf in ${auto_config_binscripts} ; do \
347 mv -f "$(DESTDIR)$(bindir)/$$sf" "$(DESTDIR)$(bindir)/$$sf".tmp \
348 && sed < "$(DESTDIR)$(bindir)/$$sf".tmp > "$(DESTDIR)$(bindir)/$$sf" \
352 rm -f "$(DESTDIR)$(bindir)/$$sf".tmp ; \
  /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 556 milliseconds

1 2 3 4 5 6