Home
last modified time | relevance | path

Searched refs:S_FALSE (Results 1 – 25 of 72) sorted by relevance

123

/external/mdnsresponder/mDNSWindows/DLLX/
DTXTRecord.cpp68 require_action( ok, exit, hr = S_FALSE ); in SetValue()
74 require_action( ok, exit, hr = S_FALSE ); in SetValue()
80 require_action( !err, exit, hr = S_FALSE ); in SetValue()
116 require_action( ok, exit, hr = S_FALSE ); in RemoveValue()
122 require_action( !err, exit, hr = S_FALSE ); in RemoveValue()
160 require_action( ok, exit, err = S_FALSE ); in ContainsKey()
210 require_action( ok, exit, hr = S_FALSE ); in GetValueForKey()
224 require_action( ok, exit, hr = S_FALSE ); in GetValueForKey()
288 require_action( !err, exit, hr = S_FALSE ); in GetKeyAtIndex()
294 require_action( ok, exit, hr = S_FALSE ); in GetKeyAtIndex()
[all …]
/external/lzma/CPP/7zip/UI/Common/
DArchiveOpenCallback.cpp87 return S_FALSE; in GetStream()
104 return S_FALSE; in GetStream()
111 return S_FALSE; in GetStream()
113 return S_FALSE; in GetStream()
115 return S_FALSE; in GetStream()
DOpenArchive.cpp1156 return S_FALSE; in GetStream()
1753 return S_FALSE; in OpenStream2()
1891 if (result == S_FALSE) in OpenStream2()
1918 return S_FALSE; in OpenStream2()
2004 return S_FALSE; in OpenStream2()
2011 return S_FALSE; in OpenStream2()
2019 return S_FALSE; in OpenStream2()
2050 return S_FALSE; in OpenStream2()
2146 if (result == S_FALSE) in OpenStream2()
2279 return S_FALSE; in OpenStream2()
[all …]
/external/apache-xml/src/main/java/org/apache/xpath/functions/
DFuncExtFunctionAvailable.java69 return XBoolean.S_FALSE; in execute()
78 return m_functionTable.functionAvailable(methName) ? XBoolean.S_TRUE : XBoolean.S_FALSE; in execute()
82 return XBoolean.S_FALSE; in execute()
90 ? XBoolean.S_TRUE : XBoolean.S_FALSE; in execute()
DFuncExtElementAvailable.java68 return XBoolean.S_FALSE; in execute()
80 ? XBoolean.S_TRUE : XBoolean.S_FALSE; in execute()
84 return XBoolean.S_FALSE; in execute()
92 ? XBoolean.S_TRUE : XBoolean.S_FALSE; in execute()
DFuncNot.java45 return m_arg0.execute(xctxt).bool() ? XBoolean.S_FALSE : XBoolean.S_TRUE; in execute()
DFuncBoolean.java45 return m_arg0.execute(xctxt).bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE; in execute()
DFuncFalse.java45 return XBoolean.S_FALSE; in execute()
DFuncStartsWith.java46 ? XBoolean.S_TRUE : XBoolean.S_FALSE; in execute()
/external/lzma/CPP/7zip/Archive/
DSplitHandler.cpp128 return S_FALSE; in Open2()
133 return S_FALSE; in Open2()
140 return S_FALSE; in Open2()
174 return S_FALSE; in Open2()
177 return S_FALSE; in Open2()
217 if (result == S_FALSE) in Open2()
246 return S_FALSE; in Open2()
DLzmaHandler.cpp168 return S_FALSE; in Code()
338 return S_FALSE; in Open()
341 return S_FALSE; in Open()
345 return S_FALSE; in Open()
496 result = S_FALSE; in Extract()
499 if (result == S_FALSE) in Extract()
507 result = S_FALSE; in Extract()
509 else if (result == S_OK || result == S_FALSE) in Extract()
535 else if (result == S_FALSE) in Extract()
/external/lzma/CPP/7zip/Compress/
DLzma2Decoder.cpp19 case SZ_ERROR_DATA: return S_FALSE; in SResToHRESULT()
95 return S_FALSE; in Code()
166 return S_FALSE; in Code()
174 return S_FALSE; in Code()
176 return S_FALSE; in Code()
179 return (finishMode == LZMA_FINISH_END) ? S_FALSE : S_OK; in Code()
DBcj2Coder.cpp221 if (result == S_FALSE) in CodeReal()
376 return S_FALSE; in Code()
433 res = (_readRes[dec.state] != S_OK) ? _readRes[dec.state] : S_FALSE; in Code()
489 return S_FALSE; in Code()
495 return S_FALSE; in Code()
507 return S_FALSE; in Code()
570 return S_FALSE; in Read()
630 return (_readRes[dec.state] != S_OK) ? _readRes[dec.state] : S_FALSE; in Read()
642 return S_FALSE; in Read()
646 return S_FALSE; in Read()
DLzmaDecoder.cpp19 case SZ_ERROR_DATA: return S_FALSE; in SResToHRESULT()
95 return S_FALSE; in CodeSpec()
148 return S_FALSE; in CodeSpec()
157 return S_FALSE; in CodeSpec()
164 return (status == LZMA_STATUS_FINISHED_WITH_MARK ? S_OK : S_FALSE); in CodeSpec()
DPpmdDecoder.cpp55 case kStatus_Error: return S_FALSE; in CodeSpec()
61 return S_FALSE; in CodeSpec()
/external/lzma/CPP/7zip/Archive/7z/
D7zFolderInStream.cpp43 if (result != S_FALSE) in OpenStream()
117 return S_FALSE; // E_FAIL; in GetSubStreamSize()
129 return S_FALSE; in GetSubStreamSize()
D7zIn.cpp273 return S_FALSE; in FindAndReadSignature()
289 return S_FALSE; in FindAndReadSignature()
295 return S_FALSE; in FindAndReadSignature()
1484 return S_FALSE; in ReadDatabase2()
1505 return S_FALSE; in ReadDatabase2()
1510 return S_FALSE; in ReadDatabase2()
1519 return S_FALSE; in ReadDatabase2()
1540 return S_FALSE; in ReadDatabase2()
1544 return S_FALSE; in ReadDatabase2()
1557 return S_FALSE; in ReadDatabase2()
[all …]
/external/apache-xml/src/main/java/org/apache/xpath/operations/
DAnd.java54 return expr2.bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE; in execute()
57 return XBoolean.S_FALSE; in execute()
DLte.java47 return left.lessThanOrEqual(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE; in operate()
DGt.java47 return left.greaterThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE; in operate()
DNotEquals.java47 return (left.notEquals(right)) ? XBoolean.S_TRUE : XBoolean.S_FALSE; in operate()
DGte.java48 ? XBoolean.S_TRUE : XBoolean.S_FALSE; in operate()
DLt.java47 return left.lessThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE; in operate()
/external/lzma/CPP/7zip/Common/
DFilterCoder.cpp96 return S_FALSE; in Code()
251 return S_FALSE; in OutStreamFinish()
367 return S_FALSE; in Read()
DCWrappers.cpp39 case S_FALSE: return SZ_ERROR_DATA; in HRESULT_To_SRes()
95 case SZ_ERROR_DATA: return S_FALSE; in SResToHRESULT()

123