HomeSort by relevance Sort by last modified time
    Searched refs:mode (Results 126 - 150 of 11477) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/compiler-rt/test/tsan/Linux/
user_fopen.cc 6 extern "C" FILE *__interceptor_fopen(const char *file, const char *mode);
9 extern "C" FILE *fopen(const char *file, const char *mode) {
13 return __interceptor_fopen(file, mode);
  /external/python/cpython2/Lib/plat-mac/
icopen.py 25 panel. User Mode (in the Edit menu) needs to be set to Advanced in order to
50 mode = 'r'
52 mode = args[1]
53 if mode[0] == 'w':
  /external/skia/src/gpu/effects/
GrXfermodeFragmentProcessor.h 21 SkBlendMode mode);
26 SkBlendMode mode);
29 to both src and dst. The outputs of a src and dst are blended using mode and the original
33 SkBlendMode mode);
  /external/skqp/src/gpu/effects/
GrXfermodeFragmentProcessor.h 21 SkBlendMode mode);
26 SkBlendMode mode);
29 to both src and dst. The outputs of a src and dst are blended using mode and the original
33 SkBlendMode mode);
  /external/sonivox/jet_tools/JetCreator/
JetStatusEvent.py 32 def __init__(self, mode, data):
35 self.mode = mode
  /external/strace/tests/
get_mempolicy.c 83 int *mode = (void *) 0xdefaced1baddeed2; local
88 rc = syscall(__NR_get_mempolicy, mode, nodemask, maxnode, addr, flags);
90 mode, nodemask, maxnode, addr,
94 mode = tail_alloc(sizeof(*mode));
96 rc = syscall(__NR_get_mempolicy, mode, 0, 0, 0, 0);
98 printxval(policies, (unsigned) *mode, "MPOL_???");
101 *mode = -1;
102 rc = syscall(__NR_get_mempolicy, mode, 0, 0, mode - 1, 2)
    [all...]
  /external/strace/tests-m32/
get_mempolicy.c 83 int *mode = (void *) 0xdefaced1baddeed2; local
88 rc = syscall(__NR_get_mempolicy, mode, nodemask, maxnode, addr, flags);
90 mode, nodemask, maxnode, addr,
94 mode = tail_alloc(sizeof(*mode));
96 rc = syscall(__NR_get_mempolicy, mode, 0, 0, 0, 0);
98 printxval(policies, (unsigned) *mode, "MPOL_???");
101 *mode = -1;
102 rc = syscall(__NR_get_mempolicy, mode, 0, 0, mode - 1, 2)
    [all...]
  /external/strace/tests-mx32/
get_mempolicy.c 83 int *mode = (void *) 0xdefaced1baddeed2; local
88 rc = syscall(__NR_get_mempolicy, mode, nodemask, maxnode, addr, flags);
90 mode, nodemask, maxnode, addr,
94 mode = tail_alloc(sizeof(*mode));
96 rc = syscall(__NR_get_mempolicy, mode, 0, 0, 0, 0);
98 printxval(policies, (unsigned) *mode, "MPOL_???");
101 *mode = -1;
102 rc = syscall(__NR_get_mempolicy, mode, 0, 0, mode - 1, 2)
    [all...]
  /external/toybox/toys/posix/
mkdir.c 13 usage: mkdir [-vp] [-m mode] [dirname...]
17 -m set permissions of directory to mode
42 mode_t mode = (0777&~toys.old_umask); local
48 if (TT.arg_mode) mode = string_to_mode(TT.arg_mode, 0777);
52 if (mkpathat(AT_FDCWD, *s, mode, toys.optflags|1))
  /external/webrtc/webrtc/voice_engine/include/
voe_audio_processing.h 69 // Sets Noise Suppression (NS) status and mode.
71 virtual int SetNsStatus(bool enable, NsModes mode = kNsUnchanged) = 0;
73 // Gets the NS status and mode.
74 virtual int GetNsStatus(bool& enabled, NsModes& mode) = 0;
76 // Sets the Automatic Gain Control (AGC) status and mode.
78 virtual int SetAgcStatus(bool enable, AgcModes mode = kAgcUnchanged) = 0;
80 // Gets the AGC status and mode.
81 virtual int GetAgcStatus(bool& enabled, AgcModes& mode) = 0;
91 // Sets the Echo Control (EC) status and mode.
95 virtual int SetEcStatus(bool enable, EcModes mode = kEcUnchanged) = 0
    [all...]
  /frameworks/base/media/java/android/media/
AudioGainConfig.java 35 AudioGainConfig(int index, AudioGain gain, int mode, int channelMask,
39 mMode = mode;
57 public int mode() { method in class:AudioGainConfig
78 * Ramp duration in milliseconds. N/A if mode() does not
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
icopen.py 25 panel. User Mode (in the Edit menu) needs to be set to Advanced in order to
50 mode = 'r'
52 mode = args[1]
53 if mode[0] == 'w':
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
icopen.py 25 panel. User Mode (in the Edit menu) needs to be set to Advanced in order to
50 mode = 'r'
52 mode = args[1]
53 if mode[0] == 'w':
  /test/vts/utils/python/hal/
hal_service_name_utils_unittest.py 63 mode = hal_service_name_utils.CombMode.NAME_MATCH
65 mode)
68 ["s1"], {}, mode)
71 ["s1"], {"s1": ["n1"]}, mode)
74 ["s1"], {"s1": ["n1", "n2"]}, mode)
77 ["s1", "s2"], {"s1": ["n1", "n2"]}, mode)
81 "s2": ["n3"]}, mode)
85 "s2": ["n3", "n4"]}, mode)
89 "s2": []}, mode)
93 "s2": ["n1", "n2"]}, mode)
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
filemode.c 108 mode_string (unsigned long mode, char *str)
110 str[0] = ftypelet ((unsigned long) mode);
111 str[1] = (mode & S_IRUSR) != 0 ? 'r' : '-';
112 str[2] = (mode & S_IWUSR) != 0 ? 'w' : '-';
113 str[3] = (mode & S_IXUSR) != 0 ? 'x' : '-';
114 str[4] = (mode & S_IRGRP) != 0 ? 'r' : '-';
115 str[5] = (mode & S_IWGRP) != 0 ? 'w' : '-';
116 str[6] = (mode & S_IXGRP) != 0 ? 'x' : '-';
117 str[7] = (mode & S_IROTH) != 0 ? 'r' : '-';
118 str[8] = (mode & S_IWOTH) != 0 ? 'w' : '-'
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter_ipv4/
ipt_ttl.h 29 __u8 mode; member in struct:ipt_ttl_info
  /bionic/libc/kernel/uapi/linux/netfilter_ipv6/
ip6t_hl.h 29 __u8 mode; member in struct:ip6t_hl_info
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
flags.c 41 * Return the (stdio) flags for a given mode. Store the flags
46 __sflags(const char *mode, int *optr)
50 switch (*mode++) {
70 default: /* illegal mode */
75 while (*mode != '\0')
76 switch (*mode++) {
92 * Lots of software passes other extension mode
  /cts/apps/CameraITS/tests/scene1/
test_param_shading_mode.py 26 """Test that the android.shading.mode param is applied.
50 # 1. Lens shading maps with mode OFF are all 1.0
51 # 2. Lens shading maps with mode FAST are similar after switching
53 # 3. Lens shading maps with mode HIGH_QUALITY are similar after
59 # reference_maps[mode]
60 reference_maps = [[] for mode in range(3)]
62 for mode in range(1, 3):
65 req["android.shading.mode"] = mode
71 if mode == 1
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/mediatek/mt6795/include/
power_tracer.h 17 void trace_power_flow(unsigned long mpidr, unsigned char mode);
  /device/linaro/bootloader/arm-trusted-firmware/plat/mediatek/mt8173/include/
power_tracer.h 17 void trace_power_flow(unsigned long mpidr, unsigned char mode);
  /external/aac/libAACenc/src/
channel_map.h 117 /* Element mode */
120 AAC_ENCODER_ERROR FDKaacEnc_DetermineEncoderMode(CHANNEL_MODE* mode,
123 AAC_ENCODER_ERROR FDKaacEnc_InitChannelMapping(CHANNEL_MODE mode,
131 ELEMENT_MODE FDKaacEnc_GetMonoStereoMode(const CHANNEL_MODE mode);
134 const CHANNEL_MODE mode);
  /external/fio/os/windows/posix/include/
dlfcn.h 6 void *dlopen(const char *file, int mode);
  /external/iproute2/ip/
iplink_ipvlan.c 23 fprintf(f, "Usage: ... ipvlan [ mode { l2 | l3 | l3s } ]\n");
30 if (matches(*argv, "mode") == 0) {
31 __u16 mode = 0; local
36 mode = IPVLAN_MODE_L2;
38 mode = IPVLAN_MODE_L3;
40 mode = IPVLAN_MODE_L3S;
42 fprintf(stderr, "Error: argument of \"mode\" must be either \"l2\", \"l3\" or \"l3s\"\n");
45 addattr16(n, 1024, IFLA_IPVLAN_MODE, mode);
70 __u16 mode = rta_getattr_u16(tb[IFLA_IPVLAN_MODE]); local
71 const char *mode_str = mode == IPVLAN_MODE_L2 ? "l2"
    [all...]
  /external/iptables/include/linux/netfilter_ipv4/
ipt_ttl.h 18 __u8 mode; member in struct:ipt_ttl_info

Completed in 854 milliseconds

1 2 3 4 56 7 8 91011>>