/external/autotest/server/cros/ap_configurators/ |
D | ap_spec.py | 147 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/ |
D | lzma.py | 95 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 …]
|
D | bz2.py | 61 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 …]
|
D | fileinput.py | 220 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/ |
D | mangle_pstate_invalid_mode_template.h | 8 #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/ |
D | base.py | 180 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/ |
D | hostap_config.py | 300 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/ |
D | third_party.gni | 63 _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/ |
D | ciphers.py | 24 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/ |
D | third_party.gni | 32 _mode = "static_library" 34 _mode = "source_set" 37 target(_mode, target_name) {
|
/external/python/cpython2/Lib/ |
D | fileinput.py | 216 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)
|
D | dumbdbm.py | 49 self._mode = mode 225 self._os.chmod(file, self._mode)
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/ |
D | HashList.cs | 64 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/ |
D | envparse.py | 180 self._mode: OpenMode = mode 183 return open(value, self._mode)
|
/external/llvm-project/debuginfo-tests/dexter/dex/debugger/visualstudio/ |
D | VisualStudio.py | 96 def _mode(self): member in VisualStudio 197 return self._mode == VisualStudio.dbgRunMode 201 return self._mode == VisualStudio.dbgDesignMode
|
/external/compiler-rt/lib/asan/scripts/ |
D | asan_device_setup | 380 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/ |
D | ocaml.c | 700 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/ |
D | locked_file.py | 76 self._mode = mode 131 self._fh = open(self._filename, self._mode)
|
/external/llvm-project/compiler-rt/lib/asan/scripts/ |
D | asan_device_setup | 385 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/ |
D | util.py | 153 self._mode = mode 156 return capi.nl_rate2str(self._rate, self._mode, 32)[1]
|
/external/icu/icu4c/source/test/perf/normperf/ |
D | normperf.h | 81 …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/ |
D | snapshot.py | 76 self._mode = (mode if mode is not None else "auto") 99 mode=self._mode,
|
/external/python/cpython3/Lib/multiprocessing/ |
D | shared_memory.py | 71 _mode = 0o600 variable in SharedMemory 95 mode=self._mode 106 mode=self._mode
|
/external/webrtc/sdk/objc/base/ |
D | RTCVideoEncoderSettings.m | 23 @synthesize mode = _mode;
|
/external/protobuf/src/google/protobuf/io/ |
D | io_win32.h | 70 PROTOBUF_EXPORT int mkdir(const char* path, int _mode);
|