Searched refs:Write (Results 1 - 25 of 120) sorted by relevance

12345

/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dmk-ca-bundle.vbs70 ' Write received data to file if enabled
73 myFh.Write myCdData
107 myFh.Write "##" & vbLf
108 myFh.Write "## " & myCaFile & " -- Bundle of CA Root Certificates" & vbLf
109 myFh.Write "##" & vbLf
110 myFh.Write "## Converted at: " & Now & vbLf
111 myFh.Write "##" & vbLf
112 myFh.Write "## This is a bundle of X.509 certificates of public Certificate Authorities" & vbLf
113 myFh.Write "## (CA). These were automatically extracted from Mozilla's root certificates" & vbLf
114 myFh.Write "## fil
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/Shared/linux/SeccompFilters/
H A DSyscallPolicy.h44 Write = 1 << 1, enumerator in enum:WebKit::SyscallPolicy::Permission
45 ReadAndWrite = Read | Write
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/examples/sasl/
H A Dsaslclient.tcl99 Write $chan "EHLO [info host]"
103 Write $chan STARTTLS
113 Write $chan "AUTH $mech"
131 Write $chan "QUIT"
149 Write $chan [join [base64::encode $rsp] {}]
152 Write $chan "QUIT"
156 Write $chan QUIT
163 # Write --
165 # Write data to the socket channel with logging.
167 proc Write {cha procedure
[all...]
/macosx-10.10.1/apr-32/apr/apr/include/arch/beos/
H A Dapr_arch_thread_rwlock.h34 /* Read/Write lock stuff */
37 sem_id Write; member in struct:apr_thread_rwlock_t
/macosx-10.10.1/apr-32/apr/apr/locks/beos/
H A Dthread_rwlock.c17 /*Read/Write locking implementation based on the MultiLock code from
38 release_sem (mutex->Write);
48 delete_sem(mutex->Write);
69 new->Write = create_sem(0, "APR_WriteLock");
72 if (new->Lock < 0 || new->Read < 0 || new->Write < 0) {
128 rv = acquire_sem_etc(rwlock->Write, readers, B_DO_NOT_RESCHEDULE,
172 rv = release_sem_etc(rwlock->Write, 1, B_DO_NOT_RESCHEDULE);
/macosx-10.10.1/vim-55/runtime/plugin/
H A DzipPlugin.vim33 au BufWriteCmd zipfile:* call zip#Write(expand("<amatch>"))
34 au FileWriteCmd zipfile:* call zip#Write(expand("<amatch>"))
39 au BufWriteCmd zipfile:*/* call zip#Write(expand("<amatch>"))
40 au FileWriteCmd zipfile:*/* call zip#Write(expand("<amatch>"))
H A DtarPlugin.vim27 au BufWriteCmd tarfile::* call tar#Write(expand("<amatch>"))
28 au FileWriteCmd tarfile::* call tar#Write(expand("<amatch>"))
33 au BufWriteCmd tarfile::*/* call tar#Write(expand("<amatch>"))
34 au FileWriteCmd tarfile::*/* call tar#Write(expand("<amatch>"))
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/
H A Dpt_pgen.tcl41 return [Write {*}$args $input]
46 return [Write {*}$args [pt::peg::from::json convert $input]]
51 return [Write {*}$args [pt::peg::from::peg convert $input]]
57 namespace eval ::pt::pgen::Write {
62 proc ::pt::pgen::Write::json {args} {
68 proc ::pt::pgen::Write::peg {args} {
74 proc ::pt::pgen::Write::container {args} {
80 proc ::pt::pgen::Write::param {args} {
86 proc ::pt::pgen::Write::snit {args} {
97 proc ::pt::pgen::Write
[all...]
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DCFDictionaryPropertyBag.h54 virtual HRESULT STDMETHODCALLTYPE Write(LPCOLESTR pszPropName, VARIANT*);
H A DWebElementPropertyBag.h57 virtual HRESULT STDMETHODCALLTYPE Write(
H A DWebActionPropertyBag.h54 virtual HRESULT STDMETHODCALLTYPE Write(
H A DMemoryStream.cpp113 HRESULT STDMETHODCALLTYPE MemoryStream::Write( function in class:MemoryStream
197 HRESULT hr = pstm->Write(m_buffer->data()+m_pos, read, &written);
H A DCOMPropertyBag.h56 virtual HRESULT STDMETHODCALLTYPE Write(LPCOLESTR pszPropName, VARIANT*);
60 virtual HRESULT STDMETHODCALLTYPE Write(ULONG cProperties, PROPBAG2*, VARIANT*);
159 HRESULT STDMETHODCALLTYPE COMPropertyBag<ValueType, KeyType, HashType>::Write(LPCOLESTR pszPropName, VARIANT* pVar) function in class:COMPropertyBag
184 HRESULT STDMETHODCALLTYPE COMPropertyBag<ValueType, KeyType, HashType>::Write(ULONG cProperties, PROPBAG2*, VARIANT*) function in class:COMPropertyBag
H A DMemoryStream.h57 virtual /* [local] */ HRESULT STDMETHODCALLTYPE Write(
/macosx-10.10.1/tcl-105/tcl_ext/mk4tcl/metakit/include/
H A Dmk4io.h23 virtual bool Write(const void *buffer_, int length_);
44 /// Write a number of bytes, return true if successful
/macosx-10.10.1/ncurses-44/ncurses/ncurses/tinfo/
H A Dwrite_entry.c485 #define Write(buf, size, count) fake_write(buffer, offset, limit, (char *) buf, count, size) macro
492 #define WRITE_STRING(str) (Write(str, sizeof(char), strlen(str) + 1) == strlen(str) + 1)
533 ((value) % 2 != 0 && Write(&zero, sizeof(char), 1) != 1)
654 if (Write(buf, 12, 1) != 1
655 || Write(namelist, sizeof(char), namelen) != namelen)
663 if (Write(buf, sizeof(char), boolmax) != boolmax)
673 if (Write(buf, 2, nummax) != nummax)
680 if (Write(buf, 2, strmax) != strmax)
713 * Write the extended header
721 if (Write(bu
[all...]
/macosx-10.10.1/vim-55/runtime/autoload/
H A Dzip.vim220 " zip#Write: {{{2
221 fun! zip#Write(fname)
222 " call Dfunc("zip#Write(fname<".a:fname.">) zipfile_".winnr()."<".s:zipfile_{winnr()}.">")
229 echohl Error | echo "***error*** (zip#Write) sorry, your system doesn't appear to have the zip pgm" | echohl None
232 " call Dret("zip#Write")
237 echohl Error | echo "***error*** (zip#Write) sorry, mkdir() doesn't work on your system" | echohl None
240 " call Dret("zip#Write")
254 if s:ChgDir(tmpdir,s:ERROR,"(zip#Write) cannot cd to temporary directory")
256 " call Dret("zip#Write")
305 echohl Error | echo "***error*** (zip#Write) sorr
[all...]
/macosx-10.10.1/AppleUSBIrDA-145.2.4/IrDA/IrComm/
H A DIrComm.h31 UInt32 Write(UInt8 *buf, UInt32 length); // send to peer
/macosx-10.10.1/AppleUSBIrDA-145.2.4/
H A DIrDAComm.h58 size_t Write( UInt8 *Buf, size_t Length ); // Send data over the ircomm channel
/macosx-10.10.1/Security-57031.1.35/SecurityTests/testKeychainAPI/testKeychainAPI/
H A DKCOperation.cpp67 aParam->Write(inFile);
89 aParam->Write(inFile);
/macosx-10.10.1/CPANInternal-159.1/PlRPC-0.2020/lib/RPC/PlServer/
H A DComm.pm70 # Name: Write
88 sub Write ($$$) { subroutine
122 # method name and arguments). Counterpart of Write, see
/macosx-10.10.1/llvmCore-3425.0.34/unittests/Support/
H A DEndianTest.cpp35 TEST(Endian, Write) {
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/fumagic/
H A Dtmc186 proc ::tmc::Write {f data} {
220 Write $f [join $out \n]
230 # Write the result either to stdout, or merge
/macosx-10.10.1/llvmCore-3425.0.34/lib/Analysis/
H A DLint.cpp62 static unsigned Write = 2; member in namespace:__anon9890::MemRef
252 Ty, MemRef::Read | MemRef::Write);
279 MemRef::Write);
303 MemRef::Write);
314 MemRef::Write);
324 0, 0, MemRef::Read | MemRef::Write);
328 0, 0, MemRef::Write);
334 0, 0, MemRef::Read | MemRef::Write);
342 0, 0, MemRef::Read | MemRef::Write);
390 if (Flags & MemRef::Write) {
[all...]
/macosx-10.10.1/zlib-55/zlib/contrib/dotzlib/DotZLib/
H A DUnitTests.cs253 writer.Write("hi there");
254 writer.Write(Math.PI);
255 writer.Write(42);

Completed in 190 milliseconds

12345