/aosp_15_r20/external/sdv/vsomeip/third_party/boost/process/include/boost/process/detail/posix/ |
D | basic_pipe.hpp | 28 int _source = -1; member in boost::process::detail::posix::basic_pipe 31 explicit basic_pipe(int source, int sink) : _source(source), _sink(sink) {} in basic_pipe() 32 explicit basic_pipe(int source, int sink, const std::string&) : _source(source), _sink(sink) {} in basic_pipe() 46 _source = fds[0]; in basic_pipe() 51 basic_pipe(basic_pipe&& lhs) : _source(lhs._source), _sink(lhs._sink) in basic_pipe() 53 lhs._source = -1; in basic_pipe() 59 _source = lhs._source; in operator =() 62 lhs._source = -1; in operator =() 71 if (_source != -1) in ~basic_pipe() 72 ::close(_source); in ~basic_pipe() [all …]
|
D | async_pipe.hpp | 21 ::boost::asio::posix::stream_descriptor _source; 31 boost::asio::io_context & ios_sink) : _source(ios_source), _sink(ios_sink) in async_pipe() 37 _source.assign(fds[0]); in async_pipe() 46 async_pipe(async_pipe&& lhs) : _source(std::move(lhs._source)), _sink(std::move(lhs._sink)) in async_pipe() 48 lhs._source.assign (-1); in async_pipe() 56 : _source(ios_source, p.native_source()), _sink(ios_sink, p.native_sink()) in async_pipe() 85 if (_source.is_open()) in cancel() 86 _source.cancel(); in cancel() 93 if (_source.is_open()) in close() 94 _source.close(); in close() [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/process/include/boost/process/detail/windows/ |
D | basic_pipe.hpp | 27 ::boost::winapi::HANDLE_ _source = ::boost::winapi::INVALID_HANDLE_VALUE_; 38 : _source(source), _sink(sink) {} in basic_pipe() 41 basic_pipe(basic_pipe&& lhs) : _source(lhs._source), _sink(lhs._sink) in basic_pipe() 43 lhs._source = ::boost::winapi::INVALID_HANDLE_VALUE_; in basic_pipe() 52 if (_source != ::boost::winapi::INVALID_HANDLE_VALUE_) in ~basic_pipe() 53 ::boost::winapi::CloseHandle(_source); in ~basic_pipe() 55 native_handle_type native_source() const {return _source;} in native_source() 58 void assign_source(native_handle_type h) { _source = h;} in assign_source() 63 if (!::boost::winapi::CreatePipe(&_source, &_sink, nullptr, 0)) in basic_pipe() 88 _source, data, count * sizeof(char_type), &read_len, nullptr in read() [all …]
|
D | async_pipe.hpp | 41 ::boost::asio::windows::stream_handle _source; 66 async_pipe(async_pipe&& rhs) : _source(std::move(rhs._source)), _sink(std::move(rhs._sink)) in async_pipe() 73 : _source(ios_source, p.native_source()), _sink(ios_sink, p.native_sink()) in async_pipe() 102 if (_source.is_open()) in cancel() 103 _source.cancel(); in cancel() 113 if (_source.is_open()) in close() 115 _source.close(); in close() 116 _source = handle_type(_source.get_executor()); in close() 126 if (_source.is_open()) in close() 128 _source.close(ec); in close() [all …]
|
/aosp_15_r20/development/tools/motion/motion_test_watcher_app/src/app/video-view/ |
H A D | video-view.component.ts | 37 private _source?: VideoSource; 72 if (this._source === newSource) return; 75 this._source = newSource; 88 return this._source; 102 if (!this._container || !this._source) { 109 this._container.nativeElement.clientWidth / this._source.width; 111 this._container.nativeElement.clientHeight / this._source.height; 116 canvasElement.width = this._source.width * scale; 117 canvasElement.height = this._source.height * scale; 119 this._source.drawCurrentFrame(checkNotNull(canvasElement.getContext('2d'))); [all …]
|
/aosp_15_r20/development/tools/motion/motion_test_watcher_app/src/app/video-controls/ |
H A D | video-controls.component.ts | 47 private _source?: VideoSource; 54 if (this._source === newSource) return; 57 this._source = newSource; 58 if (this._source) { 59 this._source.loop = this._preferences.loopVideo; 60 this._source.playbackRate = this._preferences.playbackRate; 69 return this._source?.state == 'play' ? 'pause' : 'play_arrow'; 73 const videoSource = checkNotNull(this._source); 91 const videoSource = checkNotNull(this._source); 106 checkNotNull(this._source).loop = loopVideo; [all …]
|
/aosp_15_r20/external/ms-tpm-20-ref/TPMCmd/tpm/src/support/ |
H A D | TableDrivenMarshal.c | 731 #define _source ((UINT8 *)source) in Marshal() macro 759 #define _source ((UINT8 *)source) in Marshal() macro 767 mb[0 ^ MM32] = _source[0]; in Marshal() 768 mb[1 ^ MM32] = _source[1]; in Marshal() 769 mb[2 ^ MM32] = _source[2]; in Marshal() 770 mb[3 ^ MM32] = _source[3]; in Marshal() 774 mb[0 ^ MM16] = _source[0]; in Marshal() 775 mb[1 ^ MM16] = _source[1]; in Marshal() 778 mb[0] = _source[0]; in Marshal() 781 mb[0 ^ MM64] = _source[0]; in Marshal() [all …]
|
/aosp_15_r20/development/build/tools/ |
H A D | sdk-preprocess-files.mk | 10 $(TOPDIR)development/samples/%_source.prop_template, \ 11 $(HOST_OUT)/development/samples/%_source.properties, \ 12 $(wildcard $(TOPDIR)development/samples/*_source.prop_template)) 14 $(TOPDIR)development/sys-img/%_source.prop_template, \ 15 $(HOST_OUT)/development/sys-img-$(TARGET_CPU_ABI)/%_source.properties, \ 16 $(wildcard $(TOPDIR)development/sys-img/*_source.prop_template)) 43 …ST_OUT)/development/sys-img-$(TARGET_CPU_ABI)/%_source.properties : $(TOPDIR)development/sys-img/%… 46 $(sdk_props) : $(HOST_OUT)/development/sdk/%_source.properties : $(TOPDIR)development/sdk/%_source.… 49 …mple_props) : $(HOST_OUT)/development/samples/%_source.properties : $(TOPDIR)development/samples/%…
|
/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | test_memoryview.py | 24 def _source(self): member in AbstractMemoryTests 32 b = tp(self._source) 58 b = tp(self._source) 65 b = self.ro_type(self._source) 80 b = self.rw_type(self._source) 130 b = tp(self._source) 139 m = self._view(tp(self._source)) 149 m = self._view(tp(self._source)) 157 m = self._view(tp(self._source)) 184 m = self._view(tp(self._source)) [all …]
|
/aosp_15_r20/external/python/cpython2/Lib/test/ |
D | test_memoryview.py | 22 def _source(self): member in AbstractMemoryTests 31 b = tp(self._source) 57 b = tp(self._source) 63 b = tp(self._source) 70 b = self.ro_type(self._source) 85 b = self.rw_type(self._source) 126 b = tp(self._source) 135 m = self._view(tp(self._source)) 145 m = self._view(tp(self._source)) 153 m = self._view(tp(self._source)) [all …]
|
/aosp_15_r20/external/python/cpython3/Lib/xml/sax/ |
D | expatreader.py | 76 return parser._source.getPublicId() 82 return parser._source.getSystemId() 92 self._source = xmlreader.InputSource() 107 self._source = source 224 source = self._source 278 self._parser = expat.ParserCreate(self._source.getEncoding(), " ", 284 self._parser = expat.ParserCreate(self._source.getEncoding(), 326 return self._source.getPublicId() 329 return self._source.getSystemId() 412 self._source.getSystemId() or [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/xml/sax/ |
D | expatreader.py | 76 return parser._source.getPublicId() 82 return parser._source.getSystemId() 92 self._source = xmlreader.InputSource() 107 self._source = source 224 source = self._source 278 self._parser = expat.ParserCreate(self._source.getEncoding(), " ", 284 self._parser = expat.ParserCreate(self._source.getEncoding(), 326 return self._source.getPublicId() 329 return self._source.getSystemId() 412 self._source.getSystemId() or [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/xml/sax/ |
D | expatreader.py | 76 return parser._source.getPublicId() 82 return parser._source.getSystemId() 92 self._source = xmlreader.InputSource() 107 self._source = source 224 source = self._source 278 self._parser = expat.ParserCreate(self._source.getEncoding(), " ", 284 self._parser = expat.ParserCreate(self._source.getEncoding(), 326 return self._source.getPublicId() 329 return self._source.getSystemId() 412 self._source.getSystemId() or [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/xml/sax/ |
D | expatreader.py | 76 return parser._source.getPublicId() 82 return parser._source.getSystemId() 92 self._source = xmlreader.InputSource() 107 self._source = source 224 source = self._source 278 self._parser = expat.ParserCreate(self._source.getEncoding(), " ", 284 self._parser = expat.ParserCreate(self._source.getEncoding(), 326 return self._source.getPublicId() 329 return self._source.getSystemId() 412 self._source.getSystemId() or [all …]
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/xml/sax/ |
H A D | expatreader.py | 76 return parser._source.getPublicId() 82 return parser._source.getSystemId() 92 self._source = xmlreader.InputSource() 107 self._source = source 224 source = self._source 278 self._parser = expat.ParserCreate(self._source.getEncoding(), " ", 284 self._parser = expat.ParserCreate(self._source.getEncoding(), 326 return self._source.getPublicId() 329 return self._source.getSystemId() 412 self._source.getSystemId() or [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/xml/sax/ |
D | expatreader.py | 76 return parser._source.getPublicId() 82 return parser._source.getSystemId() 92 self._source = xmlreader.InputSource() 107 self._source = source 224 source = self._source 278 self._parser = expat.ParserCreate(self._source.getEncoding(), " ", 284 self._parser = expat.ParserCreate(self._source.getEncoding(), 326 return self._source.getPublicId() 329 return self._source.getSystemId() 412 self._source.getSystemId() or [all …]
|
/aosp_15_r20/external/python/cpython2/Lib/xml/sax/ |
D | expatreader.py | 76 return parser._source.getPublicId() 82 return parser._source.getSystemId() 92 self._source = xmlreader.InputSource() 107 self._source = source 227 source = self._source 281 self._parser = expat.ParserCreate(self._source.getEncoding(), " ", 287 self._parser = expat.ParserCreate(self._source.getEncoding(), 329 return self._source.getPublicId() 332 return self._source.getSystemId() 415 self._source.getSystemId() or [all …]
|
/aosp_15_r20/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/ |
H A D | DupDetector.java | 25 protected final Object _source; field in DupDetector 37 _source = src; in DupDetector() 49 return new DupDetector(_source); in child() 60 if (_source instanceof JsonParser) { in findLocation() 61 return ((JsonParser)_source).getCurrentLocation(); in findLocation() 71 return _source; in getSource()
|
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Modules/ |
D | CheckLinkerFlag.cmake | 67 set (_source "int main() { return 0; }") variable 69 set (_source " program test\n stop\n end program") variable 71 set (_source "__host__ int main() { return 0; }") variable 73 set (_source "__host__ int main() { return 0; }") variable 75 …set (_source "#ifndef __OBJC__\n# error \"Not an Objective-C++ compiler\"\n#endif\nint main(void)… variable 82 check_source_compiles(${_lang} "${_source}" ${_var} ${_common_patterns})
|
/aosp_15_r20/external/cronet/build/config/ios/ |
H A D | asset_catalog.gni | 65 foreach(_source, invoker.sources) { 66 _dir = get_path_info(_source, "dir") 67 _outputs += [ "$_output_dir/" + get_path_info(_source, "file") ] 70 "$_source dirname must have .${invoker.asset_type} extension") 89 _source = get_path_info(_sources[0], "dir") 95 rebase_path(get_path_info(_source, "dir"), root_build_dir), 96 rebase_path(_source, root_build_dir),
|
/aosp_15_r20/external/webrtc/sdk/objc/api/peerconnection/ |
H A D | RTCAudioTrack.mm | 22 @synthesize source = _source; 35 _source = source; 50 if (!_source) { 53 _source = [[RTC_OBJC_TYPE(RTCAudioSource) alloc] initWithFactory:self.factory 57 return _source;
|
H A D | RTCVideoTrack.mm | 24 @synthesize source = _source; 36 _source = source; 62 if (!_source) { 66 _source = [[RTC_OBJC_TYPE(RTCVideoSource) alloc] initWithFactory:self.factory 70 return _source;
|
/aosp_15_r20/external/autotest/client/cros/enterprise/ |
H A D | policy.py | 32 self._source = None 54 'source': self._source, 115 return self._source 119 self._source = source 139 self._source = 'cloud'
|
/aosp_15_r20/external/autotest/utils/frozen_chromite/utils/ |
H A D | outcap.py | 43 self._source = source 81 self._saved_fd = os.dup(self._source.fileno()) 82 os.dup2(self._capturefile.fileno(), self._source.fileno()) 88 os.dup2(self._saved_fd, self._source.fileno()) 105 self._source.flush()
|
/aosp_15_r20/external/autotest/client/cros/chameleon/ |
H A D | audio_level.py | 78 self._source = source 88 source_level = _SOURCE_LEVEL_TABLE[self._source.port_id] 98 self._source.handler.scale = 1 103 self._source.handler.scale = self._get_needed_scale()
|