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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/sun/nio/ch/
OptionKey.java 29 * Represents the level/name of a socket option
33 private int level; field in class:OptionKey
36 OptionKey(int level, int name) {
37 this.level = level;
41 int level() { method in class:OptionKey
42 return level;
  /external/valgrind/helgrind/tests/
t2t_laog.stdout.exp 2 many 30 level 10 total_locks: 310
3 init level 0
4 init level 1
5 init level 2
6 init level 3
7 init level 4
8 init level 5
9 init level 6
10 init level 7
11 init level
    [all...]
  /external/jcommander/src/test/resources/
jcommander.properties 20 level=17
  /external/perf_data_converter/src/quipper/compat/
log_level.cc 11 void SetVerbosityLevel(int level) {
13 logging::SetMinLogLevel(-level);
log_level.h 10 // Specify a verbosity level for logging functions. Higher values mean greater
11 // verbosity. VLOG() with level equal to or greater than this one will be
14 void SetVerbosityLevel(int level);
  /external/valgrind/gdbserver_tests/
nlfork_chain.stdout.exp 1 forking level 15
2 forking level 14
3 forking level 13
4 forking level 12
5 forking level 11
6 forking level 10
7 forking level 9
8 forking level 8
9 forking level 7
10 forking level
    [all...]
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTest/java/android/databinding/library/
DataBinderTrojan.java 23 public static void setBuildSdkInt(int level) {
24 ViewDataBinding.SDK_INT = level;
  /hardware/libhardware/modules/camera/3_4/arc/
common.h 13 #define LOGF(level) LOG(level) << __FUNCTION__ << "(): "
14 #define LOGFID(level, id) LOG(level) << __FUNCTION__ << "(): id: " << id << ": "
15 #define LOGF_IF(level, res) LOG_IF(level, res) << __FUNCTION__ << "(): "
17 #define VLOGF(level) VLOG(level) << __FUNCTION__ << "(): "
18 #define VLOGFID(level, id) \
19 VLOG(level) << __FUNCTION__ << "(): id: " << id << ":
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BidiRun.java 17 * A BidiRun represents a sequence of characters at the same embedding level.
19 * at the same embedding level, each such sequence is called a "run".
39 byte level; field in class:BidiRun
67 this.level = embeddingLevel;
77 this.level = run.level;
106 * Get level of run
110 return level;
114 * Check if run level is odd
115 * @return true if the embedding level of this run is odd, i.e. it is
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BidiRun.java 16 * A BidiRun represents a sequence of characters at the same embedding level.
18 * at the same embedding level, each such sequence is called a "run".
38 byte level; field in class:BidiRun
66 this.level = embeddingLevel;
76 this.level = run.level;
108 * Get level of run
113 return level;
117 * Check if run level is odd
118 * @return true if the embedding level of this run is odd, i.e. it is
    [all...]
  /external/valgrind/none/tests/s390x/
ecag.c 19 get_level_info(uint64_t topology, unsigned level)
21 return (topology >> (56 - level * 8)) & 0xff;
27 unsigned level; local
34 for (level = 0; level < 8; level++) {
35 unsigned info = get_level_info(topology, level);
37 if ((info & 0xc) == 0) continue; // cache does not exist at this level
57 printf("L%u topology: %s; %s\n", level+1, type, scope);
58 printf("L%u cache line size data: %"PRId64"\n", level+1
    [all...]
  /external/perf_data_converter/src/quipper/mybase/base/
logging.cc 11 // The minimum logging level. Anything higher than this will be logged. Set to
17 void SetMinLogLevel(int level) { g_min_log_level = level; }
  /hardware/qcom/display/msm8909/liblight/
lights_prv.h 38 extern int set_brightness_ext_level(int level);
lights_prv.cpp 48 int set_brightness_ext_level(int level)
51 level, 0);
  /hardware/qcom/display/msm8909w_3100/liblight/
lights_prv.h 38 extern int set_brightness_ext_level(int level);
lights_prv.cpp 48 int set_brightness_ext_level(int level)
51 level, 0);
  /hardware/qcom/display/msm8998/liblight/
lights_prv.h 38 extern int set_brightness_ext_level(int level);
  /packages/apps/TV/common/src/com/android/tv/common/memory/
MemoryManageable.java 25 void performTrimMemory(int level);
  /system/connectivity/wificond/scanning/
radio_chain_info.h 31 RadioChainInfo(int32_t chain_id, int32_t level)
32 : chain_id(chain_id), level(level) {}
34 : chain_id(0), level(0) {}
36 return chain_id == rhs.chain_id && level == rhs.level;
42 int32_t level; member in class:com::android::server::wifi::wificond::RadioChainInfo
  /external/selinux/libsepol/include/sepol/policydb/
mls_types.h 27 * Type definitions for the multi-level security (MLS) policy.
48 mls_level_t level[2]; /* low == level[0], high == level[1] */ member in struct:mls_range
60 static inline void mls_level_init(struct mls_level *level)
63 memset(level, 0, sizeof(mls_level_t));
66 static inline void mls_level_destroy(struct mls_level *level)
69 if (level == NULL)
72 ebitmap_destroy(&level->cat);
73 mls_level_init(level);
144 mls_semantic_level_t level[2]; member in struct:mls_semantic_range
    [all...]
  /external/lisa/libs/utils/
colors.py 22 level = { variable in class:TestColors
42 str_color = TestColors.level['failed']
44 str_color = TestColors.level['warning']
46 str_color = TestColors.level['passed']
48 str_color = TestColors.level['good']
50 return str_color + str_val + TestColors.level['endc']
  /external/ltp/testcases/kernel/syscalls/syslog/
syslog02 28 # For each level, a separate configuration file is
43 for level in $levels
45 tst_resm TINFO "Doing level: $level..."
49 # Create the configuration file specific to this level
50 echo "mail.$level $MAILLOG" >> $CONFIG_FILE
54 # Create the configuration file specific to this level
56 echo "mail.$level $MAILLOG" >> $CONFIG_FILE
61 echo "filter f_syslog_$level { level($level) and facility(mail); };" >> $CONFIG_FIL
    [all...]
  /external/swiftshader/src/D3D8/
Direct3DCubeTexture8.cpp 37 for(unsigned int level = 0; level < sw::MIPMAP_LEVELS; level++)
39 if(level < this->levels)
41 surfaceLevel[face][level] = new Direct3DSurface8(device, this, width, height, format, pool, D3DMULTISAMPLE_NONE, true, usage);
42 surfaceLevel[face][level]->bind();
46 surfaceLevel[face][level] = 0;
59 for(int level = 0; level < sw::MIPMAP_LEVELS; level++
    [all...]
Direct3DTexture8.cpp 32 for(unsigned int level = 0; level < sw::MIPMAP_LEVELS; level++)
34 if(level < this->levels)
36 surfaceLevel[level] = new Direct3DSurface8(device, this, width, height, format, pool, D3DMULTISAMPLE_NONE, true, usage);
37 surfaceLevel[level]->bind();
41 surfaceLevel[level] = 0;
51 for(int level = 0; level < sw::MIPMAP_LEVELS; level++
    [all...]
Direct3DVolumeTexture8.cpp 32 for(unsigned int level = 0; level < sw::MIPMAP_LEVELS; level++)
34 if(level < this->levels)
36 volumeLevel[level] = new Direct3DVolume8(device, this, width, height, depth, format, pool, true, usage);
37 volumeLevel[level]->bind();
41 volumeLevel[level] = 0;
52 for(int level = 0; level < sw::MIPMAP_LEVELS; level++
    [all...]

Completed in 294 milliseconds

1 2 3 4 5 6 7 8 91011>>