Searched refs:stmt (Results 1 – 9 of 9) sorted by relevance
/system/sepolicy/tests/ |
D | mini_parser.py | 44 def wrapParens(stmt): argument 45 return "(" + stmt + ")" 98 def _parseType(self, stmt): argument 99 m = re.match(r"type\s+(.+)", stmt) 103 def _parseExpandtypeattribute(self, stmt): argument 104 m = re.match(r"expandtypeattribute\s+\((.+)\)\s+(true|false)", stmt) 108 def _parseTypeattribute(self, stmt): argument 109 m = re.match(r"typeattribute\s+(.+)", stmt) 113 def _parseTypeattributeset(self, stmt): argument 114 m = re.match(r"typeattributeset\s+(.+?)\s+\((.+?)\)", stmt, flags = re.M |re.S) [all …]
|
/system/libbase/include/android-base/ |
D | result.h | 474 #define ASSERT_RESULT_OK(stmt) \ 475 if (const auto& tmp = (stmt); !tmp.ok()) \ 476 FAIL() << "Value of: " << #stmt << "\n" \ 480 #define EXPECT_RESULT_OK(stmt) \ 481 if (const auto& tmp = (stmt); !tmp.ok()) \ 482 ADD_FAILURE() << "Value of: " << #stmt << "\n" \
|
/system/security/keystore2/src/ |
D | database.rs | 171 let mut stmt = tx in load_from_db() localVariable 180 let mut rows = stmt in load_from_db() 198 let mut stmt = tx in store_in_db() localVariable 207 stmt.insert(params![key_id, tag, entry,]).with_context(|| { in store_in_db() 247 let mut stmt = tx in load_from_db() localVariable 256 let mut rows = stmt.query(params![blob_id]).context(ks_err!("query failed."))?; in load_from_db() 272 let mut stmt = tx in store_in_db() localVariable 281 stmt.insert(params![blob_id, tag, entry,]).with_context(|| { in store_in_db() 1203 let mut stmt = tx in handle_next_superseded_blobs() localVariable 1218 let rows = stmt in handle_next_superseded_blobs() [all …]
|
D | key_parameter.rs | 1461 let mut stmt = in query_from_keyparameter() localVariable 1463 let mut rows = stmt.query([])?; in query_from_keyparameter()
|
/system/security/keystore2/legacykeystore/ |
D | lib.rs | 106 let mut stmt = tx in list() localVariable 116 let aliases = stmt in list()
|
/system/keymaster/km_openssl/ |
D | attestation_record.cpp | 33 #define ASSERT_OR_RETURN_ERROR(stmt, error) \ argument 35 assert(stmt); \ 36 if (!(stmt)) { \
|
/system/tools/mkbootimg/ |
D | pylintrc | 280 single-line-if-stmt=yes
|
/system/apex/ |
D | pylintrc | 286 single-line-if-stmt=yes
|
/system/update_engine/ |
D | pylintrc | 217 single-line-if-stmt=no
|