Home
last modified time | relevance | path

Searched refs:_mode (Results 1 – 25 of 77) sorted by relevance

1234

/external/autotest/server/cros/ap_configurators/
Dap_spec.py147 self._mode = mode
154 if not self._channel and (self._mode == MODE_N or not self._mode):
157 if not self._mode:
158 self._mode = DEFAULT_2GHZ_MODE
161 if not self._mode:
162 self._mode = DEFAULT_5GHZ_MODE
168 if ((band == BAND_2GHZ and self._mode not in VALID_2GHZ_MODES) or
169 (band == BAND_5GHZ and self._mode not in VALID_5GHZ_MODES) or
186 mode_string_for_mode(self._mode),
220 return self._mode
[all …]
/external/python/cpython3/Lib/
Dlzma.py95 self._mode = _MODE_CLOSED
122 self._mode = mode_code
125 self._mode = mode_code
129 if self._mode == _MODE_READ:
140 if self._mode == _MODE_CLOSED:
143 if self._mode == _MODE_READ:
146 elif self._mode == _MODE_WRITE:
156 self._mode = _MODE_CLOSED
161 return self._mode == _MODE_CLOSED
175 return self._mode == _MODE_READ
[all …]
Dbz2.py61 self._mode = _MODE_CLOSED
87 self._mode = mode_code
90 self._mode = mode_code
94 if self._mode == _MODE_READ:
108 if self._mode == _MODE_CLOSED:
111 if self._mode == _MODE_READ:
113 elif self._mode == _MODE_WRITE:
123 self._mode = _MODE_CLOSED
129 return self._mode == _MODE_CLOSED
143 return self._mode == _MODE_READ
[all …]
Dfileinput.py220 self._mode = mode
316 if 'b' in self._mode:
329 if 'b' in self._mode:
344 self._file = open(self._backupfilename, self._mode)
365 self._file = self._openhook(self._filename, self._mode)
367 self._file = open(self._filename, self._mode)
/external/linux-kselftest/tools/testing/selftests/arm64/signal/testcases/
Dmangle_pstate_invalid_mode_template.h8 #define DEFINE_TESTCASE_MANGLE_PSTATE_INVALID_MODE(_mode) \ argument
16 uc->uc_mcontext.pstate |= PSR_MODE_EL ## _mode; \
23 .name = "MANGLE_PSTATE_INVALID_MODE_EL"#_mode, \
24 .descr = "Mangling uc_mcontext INVALID MODE EL"#_mode, \
/external/python/cryptography/src/cryptography/hazmat/primitives/ciphers/
Dbase.py180 if self._bytes_processed > self._ctx._mode._MAX_ENCRYPTED_BYTES:
183 self._ctx._mode.name, self._ctx._mode._MAX_ENCRYPTED_BYTES
218 if self._aad_bytes_processed > self._ctx._mode._MAX_AAD_BYTES:
221 self._ctx._mode.name, self._ctx._mode._MAX_AAD_BYTES
/external/autotest/server/cros/network/
Dhostap_config.py300 return self._mode == self.MODE_11N_PURE
306 return self._mode == self.MODE_11AC_PURE
312 if self._mode == self.MODE_11A:
314 if self._mode == self.MODE_11B:
316 if self._mode == self.MODE_11G:
331 return self._mode in (self.MODE_11N_MIXED, self.MODE_11N_PURE)
337 return self._mode in (self.MODE_11AC_MIXED, self.MODE_11AC_PURE)
605 self._mode = mode
617 'frequency %d' % (self._mode, self.frequency))
678 self._mode,
[all …]
/external/skia/third_party/
Dthird_party.gni63 _mode = "static_library"
65 _mode = "source_set"
68 target(_mode, target_name) {
70 # set_defaults(_mode) might not exist or set configs
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Dciphers.py24 self._mode = mode
151 if isinstance(self._mode, modes.GCM):
156 isinstance(self._mode, modes.ModeWithAuthenticationTag) and
169 if not errors and isinstance(self._mode, modes.GCM):
183 if (isinstance(self._mode, modes.GCM) and
208 if len(tag) < self._mode._min_tag_length:
211 self._mode._min_tag_length)
/external/skqp/third_party/
Dthird_party.gni32 _mode = "static_library"
34 _mode = "source_set"
37 target(_mode, target_name) {
/external/python/cpython2/Lib/
Dfileinput.py216 self._mode = mode
317 self._file = open(self._backupfilename, self._mode)
337 self._file = self._openhook(self._filename, self._mode)
339 self._file = open(self._filename, self._mode)
Ddumbdbm.py49 self._mode = mode
225 self._os.chmod(file, self._mode)
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
DHashList.cs64 private EnumerationMode _mode; field in Antlr.Runtime.Collections.HashList.HashListEnumerator
82 _mode = mode; in HashListEnumerator()
154 if (_mode == EnumerationMode.Key)
156 else if (_mode == EnumerationMode.Value)
/external/pigweed/pw_cli/py/pw_cli/
Denvparse.py180 self._mode: OpenMode = mode
183 return open(value, self._mode)
/external/llvm-project/debuginfo-tests/dexter/dex/debugger/visualstudio/
DVisualStudio.py96 def _mode(self): member in VisualStudio
197 return self._mode == VisualStudio.dbgRunMode
201 return self._mode == VisualStudio.dbgDesignMode
/external/compiler-rt/lib/asan/scripts/
Dasan_device_setup380 local _mode=$3
383 echo "Installing $_to/$_basename $_mode $_context"
386 if [[ -n "$_mode" ]]; then
387 adb_shell chmod "$_mode" "$_to/$_basename"
/external/capstone/bindings/ocaml/
Docaml.c700 CAMLprim value ocaml_cs_disasm(value _arch, value _mode, value _code, value _addr, value _count) in ocaml_cs_disasm() argument
702 CAMLparam5(_arch, _mode, _code, _addr, _count); in ocaml_cs_disasm()
750 while (_mode != Val_emptylist) { in ocaml_cs_disasm()
751 head = Field(_mode, 0); /* accessing the head */ in ocaml_cs_disasm()
838 _mode = Field(_mode, 1); /* point to the tail for next loop */ in ocaml_cs_disasm()
873 CAMLprim value ocaml_open(value _arch, value _mode) in ocaml_open() argument
875 CAMLparam2(_arch, _mode); in ocaml_open()
923 while (_mode != Val_emptylist) { in ocaml_open()
924 head = Field(_mode, 0); /* accessing the head */ in ocaml_open()
1011 _mode = Field(_mode, 1); /* point to the tail for next loop */ in ocaml_open()
/external/python/oauth2client/oauth2client/contrib/
Dlocked_file.py76 self._mode = mode
131 self._fh = open(self._filename, self._mode)
/external/llvm-project/compiler-rt/lib/asan/scripts/
Dasan_device_setup385 local _mode=$3
388 echo "Installing $_to/$_basename $_mode $_context"
391 if [[ -n "$_mode" ]]; then
392 adb_shell chmod "$_mode" "$_to/$_basename"
/external/libnl/python/netlink/
Dutil.py153 self._mode = mode
156 return capi.nl_rate2str(self._rate, self._mode, 32)[1]
/external/icu/icu4c/source/test/perf/normperf/
Dnormperf.h81 …uickCheckFn func, ULine* srcLines,int32_t srcNumLines, UNormalizationMode _mode, int32_t opts, UBo… in QuickCheckPerfFunction() argument
86 mode = _mode; in QuickCheckPerfFunction()
91 …ckCheckFn func, const UChar* source,int32_t sourceLen, UNormalizationMode _mode, int32_t opts, UBo… in QuickCheckPerfFunction() argument
96 mode = _mode; in QuickCheckPerfFunction()
/external/tensorflow/tensorflow/python/data/experimental/ops/
Dsnapshot.py76 self._mode = (mode if mode is not None else "auto")
99 mode=self._mode,
/external/python/cpython3/Lib/multiprocessing/
Dshared_memory.py71 _mode = 0o600 variable in SharedMemory
95 mode=self._mode
106 mode=self._mode
/external/webrtc/sdk/objc/base/
DRTCVideoEncoderSettings.m23 @synthesize mode = _mode;
/external/protobuf/src/google/protobuf/io/
Dio_win32.h70 PROTOBUF_EXPORT int mkdir(const char* path, int _mode);

1234