HomeSort by relevance Sort by last modified time
    Searched full:lvl (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/v8/tools/gcmole/
gccause.lua 41 local function TrackCause(name, lvl)
42 io.write((" "):rep(lvl or 0), name, "\n")
49 TrackCause(f, (lvl or 0) + 1)
  /external/jpeg/
jerror.h 252 #define TRACEMS(cinfo,lvl,code) \
254 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
255 #define TRACEMS1(cinfo,lvl,code,p1) \
258 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
259 #define TRACEMS2(cinfo,lvl,code,p1,p2) \
263 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
264 #define TRACEMS3(cinfo,lvl,code,p1,p2,p3) \
268 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
269 #define TRACEMS4(cinfo,lvl,code,p1,p2,p3,p4) \
273 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
    [all...]
  /external/llvm/test/CodeGen/ARM/
2009-03-09-AddrModeBug.ll 7 define fastcc %struct.node_t* @_ZL6createP6node_tii3v_tS1_d(%struct.node_t* %n, i32 %lvl, i32 %dist, i64 %c.0.0, i64 %c.0.1, i64 %c.0.2, i64 %d.0.0, i64 %d.0.1, i64 %d.0.2, double %r) nounwind {
  /external/qemu/distrib/jpeg-6b/
jerror.h 252 #define TRACEMS(cinfo,lvl,code) \
254 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
255 #define TRACEMS1(cinfo,lvl,code,p1) \
258 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
259 #define TRACEMS2(cinfo,lvl,code,p1,p2) \
263 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)))
264 #define TRACEMS3(cinfo,lvl,code,p1,p2,p3) \
268 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
269 #define TRACEMS4(cinfo,lvl,code,p1,p2,p3,p4) \
273 (*(cinfo)->err->emit_message) ((j_common_ptr) (cinfo), (lvl)); )
    [all...]
  /frameworks/base/docs/html/guide/google/play/licensing/
setting-up.jd 16 <li><a href="#download-lvl">Downloading the LVL</a></li>
17 <li><a href="#lvl-setup">Setting Up the Licensing Verification Library</a></li>
18 <li><a href="#add-library">Including the LVL library project sources in your
99 <li><a href="#download-lvl">Downloading the LVL</a> into your SDK </li>
100 <li><a href="#lvl-setup">Setting up the Licensing Verification Library</a></li>
101 <li><a href="#add-library">Including the LVL library project in your application</a></li>
234 <h3 id="download-lvl">Downloading the LVL</h3
    [all...]
adding-licensing.jd 57 your app with the License Verification Library (LVL).</p>
59 <p>Adding license verification with the LVL involves these tasks:</p>
63 <li><a href="#impl-Policy">Implementing a Policy</a> &mdash; you can choose one of the full implementations provided in the LVL or create your own.</li>
78 <p>For an overview of the full set of source files included in the LVL, see <a
79 href="{@docRoot}guide/google/play/licensing/licensing-reference.html#lvl-summary">Summary of LVL Classes
89 the LVL throws a security exception.</p>
98 <p>For example, here's how the LVL sample application declares the permission:
113 <code>CHECK_LICENSE</code> permission in the LVL library project's manifest,
125 <p>The LVL includes a complete {@code Policy} implementation called ServerManagedPolic
    [all...]
overview.jd 20 <li><a href="#LVL">Licensing Verification Library</a></li>
62 Licensing package. The License Verification Library (LVL) is a library you can add to your
65 the LVL added to your application, your application can determine its licensing status for the
118 <h2 id="LVL">Licensing Verification Library</h2>
121 which includes the License Verification Library (LVL). The LVL greatly simplifies the process of
123 application. The LVL provides internal classes that handle most of the standard operations of a
127 LVL interfaces are: </p>
148 <p>To help you get started with a {@code Policy}, the LVL provides two fully complete
166 <p>The LVL is available as a downloadable package of the Android SDK. Th
    [all...]
licensing-reference.jd 13 <li><a href="#lvl-summary">LVL Classes and Interfaces</a></li>
22 <h2 id="lvl-summary">LVL Classes and Interfaces</h2>
25 Library (LVL) available through the Android SDK. All of the files are part of
28 <p class="table-caption"><strong>Table 1.</strong> Summary of LVL library
136 codes. By default, the LicenseValidator class in the LVL provides all of the
259 response and use them as needed. The LVL default {@code Policy} implementation, <a
  /system/netd/
main.cpp 99 static void do_coldboot(DIR *d, int lvl)
118 if (de->d_type != DT_DIR && lvl > 0)
129 do_coldboot(d2, lvl + 1);
  /external/openssh/openbsd-compat/
port-linux.c 64 char *sename = NULL, *lvl = NULL; local
68 if (getseuserbyname(pwname, &sename, &lvl) != 0)
72 lvl = NULL;
76 r = get_default_context_with_level(sename, lvl, NULL, &sc);
100 if (lvl != NULL)
101 xfree(lvl);
  /external/apache-http/src/org/apache/commons/logging/impl/
SimpleLog.java 209 String lvl = getStringProperty(systemPrefix + "log." + logName); local
211 while(null == lvl && i > -1) {
213 lvl = getStringProperty(systemPrefix + "log." + name);
217 if(null == lvl) {
218 lvl = getStringProperty(systemPrefix + "defaultlog");
221 if("all".equalsIgnoreCase(lvl)) {
223 } else if("trace".equalsIgnoreCase(lvl)) {
225 } else if("debug".equalsIgnoreCase(lvl)) {
227 } else if("info".equalsIgnoreCase(lvl)) {
229 } else if("warn".equalsIgnoreCase(lvl)) {
    [all...]
  /external/srtp/crypto/kernel/
err.c 146 err_reporting_set_level(err_reporting_level_t lvl) {
147 err_level = lvl;
  /external/dhcpcd/
dhcpcd-run-hooks.in 140 local lvl="$1"
142 [ -n "$lvl" ] && shift
145 logger -t dhcpcd -p daemon."$lvl" -is "$interface: $*"
dhcpcd.c 442 log_dhcp(int lvl, const char *msg,
462 syslog(lvl, "%s: %s %s %s %s `%s'", iface->name, msg, a,
470 syslog(lvl, "%s: %s %s %s",
473 syslog(lvl, "%s: %s %s %s %s",
    [all...]
  /external/libnl-headers/
netlink-local.h 73 #define NL_DBG(LVL,FMT,ARG...) \
75 if (LVL <= nl_debug) \
76 fprintf(stderr, "DBG<" #LVL ">: " FMT, ##ARG); \
  /system/vold/
main.cpp 100 static void do_coldboot(DIR *d, int lvl)
119 if (de->d_type != DT_DIR && lvl > 0)
130 do_coldboot(d2, lvl + 1);
  /external/openssl/crypto/x509v3/
pcy_node.c 174 int policy_node_match(const X509_POLICY_LEVEL *lvl,
181 if ( (lvl->flags & X509_V_FLAG_INHIBIT_MAP)
pcy_int.h 209 int policy_node_match(const X509_POLICY_LEVEL *lvl,
  /ndk/sources/host-tools/sed-4.2.1/
THANKS 28 Laurent Vogel <lvl@club-internet.fr>
  /external/libvpx/examples/includes/ASCIIMathPHP-2.0/
ASCIIMathPHP-2.0.class.php 310 $lvl = $this->_getCurrentLevel(); variable
311 $indent = str_pad('',$lvl,$indent_str);
380 $lvl = $node->_getCurrentLevel(); variable
381 $lvl++;
382 return($lvl);
    [all...]
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
DeflaterTest.java 37 MyDeflater(int lvl) {
38 super(lvl);
41 MyDeflater(int lvl, boolean noHeader) {
42 super(lvl, noHeader);
    [all...]
  /external/webrtc/src/modules/audio_processing/agc/
digital_agc.c 27 // zeros = 0:31; lvl = 2.^(1-zeros);
28 // A = -10*log10(lvl) * (CompRatio - 1) / CompRatio;
33 // in = 10*log10(lvl); out = 20*log10(gains/65536);
  /external/libffi/src/pa/
ffi.c 50 #define debug(lvl, x...) do { if (lvl <= DEBUG_LEVEL) { printf(x); } } while (0)
  /external/oprofile/opcontrol/
opcontrol.cpp 299 " --verbose-log=lvl set daemon logging verbosity during setup\n"
  /hardware/ti/wlan/mac80211/ti-utils/scripts/
go.sh 514 echo -e "\ndbg lvl: $dbg_lvl\n"

Completed in 2667 milliseconds

1 2 3