/cts/hostsidetests/security/src/android/cts/security/ |
ProcessMustUseSeccompTest.java | 31 private static final String PS_CMD = "toybox ps -A -o name,pid"; 51 * Get the PID of process "Name" using "Cmd". If prefix == True only do 54 * name must be an exact match. 56 private String getPidFromCmd(String Name, String Cmd, boolean prefix) throws DeviceNotAvailableException { 64 if (!prefix && !namePid[0].equals(Name)) { 67 if (prefix && !namePid[0].startsWith(Name)) { 102 private void assertSeccompFilter(String Name, String Cmd, boolean prefix) 104 String Pid = getPidFromCmd(Name, Cmd, prefix); 105 assertFalse(Name + " process not found.", Pid.equals("")); 106 assertTrue(Name + " must have a seccomp filter enabled.\n [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/ |
fix_input.py | 6 from ..fixer_util import Call, Name
26 return Call(Name(u"eval"), [new], prefix=node.prefix)
|
fix_types.py | 25 from ..fixer_util import Name
52 _pats = ["power< 'types' trailer< '.' name='%s' > >" % t for t in _TYPE_MAPPING]
59 new_value = unicode(_TYPE_MAPPING.get(results["name"].value))
61 return Name(new_value, prefix=node.prefix)
|
fix_xreadlines.py | 8 from ..fixer_util import Name
23 no_call.replace(Name(u"__iter__", prefix=no_call.prefix))
|
fix_zip.py | 12 from ..fixer_util import Name, Call, in_special_context
33 new = Call(Name(u"list"), [new])
|
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/AcpiTables/CpuPm/ |
CpuPm.asl | 53 // Name(CFGD, 0x80000000)
56 Name(PDC0,0x80000000) // CPU0 _PDC Flags.
59 //Name(SSDT,Package()
|
/external/clang/unittests/Tooling/ |
RewriterTestContext.h | 55 FileID createInMemoryFile(StringRef Name, StringRef Content) { 58 InMemoryFileSystem->addFile(Name, 0, std::move(Source)); 60 const FileEntry *Entry = Files.getFile(Name); 67 FileID createOnDiskFile(StringRef Name, StringRef Content) { 70 std::error_code EC = llvm::sys::fs::createTemporaryFile(Name, "", FD, Path); 81 TemporaryFiles.insert(std::make_pair(Name, Path.str())).first->second; 102 std::string getFileContentFromDisk(StringRef Name) { 103 std::string Path = TemporaryFiles.lookup(Name);
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_flags.h | 22 #define COMMON_FLAG(Type, Name, DefaultValue, Description) Type Name;
|
/external/libpcap/ |
libpcap.pc.in | 13 Name: libpcap
|
/external/llvm/include/llvm/CodeGen/ |
GCStrategy.h | 80 std::string Name; 99 /// Return the name of the GC strategy. This is the value of the collector 100 /// name string specified on functions which use this strategy. 101 const std::string &getName() const { return Name; } 117 /** @name Statepoint Specific Properties */ 129 /** @name GCRoot Specific Properties 168 /// static GCRegistry::Add<CustomGC> X("custom-name",
|
/external/llvm/include/llvm/CodeGen/GlobalISel/ |
RegisterBank.h | 32 const char *Name; 52 /// Get a user friendly name of this register bank. 54 const char *getName() const { return Name; } 87 /// If IsForDebug is false, then only the name of the register bank 89 /// TRI is then used to print the name of the register classes that
|
/external/llvm/include/llvm/ExecutionEngine/ |
ObjectMemoryBuffer.h | 47 ObjectMemoryBuffer(SmallVectorImpl<char> &&SV, StringRef Name) 48 : SV(std::move(SV)), BufferName(Name) {
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
LogicalDylib.h | 89 const std::string &Name, 92 if (auto StubSym = LMH->Resources.findSymbol(Name, ExportedSymbolsOnly)) 96 if (auto Symbol = BaseLayer.findSymbolIn(BLH, Name, ExportedSymbolsOnly)) 102 const std::string &Name) { 103 if (auto Symbol = findSymbolInLogicalModule(LMH, Name, false)) 109 if (auto Symbol = findSymbolInLogicalModule(LMI, Name, false)) 116 JITSymbol findSymbol(const std::string &Name, bool ExportedSymbolsOnly) { 119 if (auto Sym = findSymbolInLogicalModule(LMI, Name, ExportedSymbolsOnly))
|
/external/llvm/include/llvm/MC/ |
MCLinkerOptimizationHint.h | 52 static inline int MCLOHNameToId(StringRef Name) { 53 #define MCLOHCaseNameToId(Name) .Case(#Name, MCLOH_ ## Name) 54 return StringSwitch<int>(Name) 67 #define MCLOHCaseIdToName(Name) case MCLOH_ ## Name: return StringRef(#Name);
|
MCSymbolELF.h | 21 MCSymbolELF(const StringMapEntry<bool> *Name, bool isTemporary) 22 : MCSymbol(SymbolKindELF, Name, isTemporary) {}
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
ObjectBuffer.h | 33 ObjectMemoryBuffer(SmallVector<char, N> SV, StringRef Name) 34 : SV(SV), BufferName(Name) {
|
/external/llvm/lib/MC/ |
MCSectionELF.cpp | 23 // should be printed before the section name. 24 bool MCSectionELF::ShouldOmitSectionDirective(StringRef Name, 30 return MAI.shouldOmitSectionDirective(Name); 33 static void printName(raw_ostream &OS, StringRef Name) { 34 if (Name.find_first_not_of("0123456789_." 36 "ABCDEFGHIJKLMNOPQRSTUVWXYZ") == Name.npos) { 37 OS << Name; 41 for (const char *B = Name.begin(), *E = Name.end(); B < E; ++B) {
|
/external/llvm/lib/Target/Mips/ |
Mips16HardFloatInfo.cpp | 38 extern FuncSignature const *findFuncSignature(const char *name) { 41 while (PredefinedFuncs[i].Name) { 42 name_ = PredefinedFuncs[i].Name; 43 if (strcmp(name, name_) == 0)
|
/external/llvm/tools/llvm-pdbdump/ |
VariableDumper.h | 37 void dumpSymbolTypeAndName(const PDBSymbol &Type, StringRef Name); 38 bool tryDumpFunctionPointer(const PDBSymbol &Type, StringRef Name);
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
fix_asserts.py | 6 from ..fixer_util import Name 33 name = results["meth"][0] 34 name.replace(Name(NAMES[str(name)], prefix=name.prefix))
|
fix_input.py | 6 from ..fixer_util import Call, Name 26 return Call(Name(u"eval"), [new], prefix=node.prefix)
|
fix_types.py | 25 from ..fixer_util import Name 52 _pats = ["power< 'types' trailer< '.' name='%s' > >" % t for t in _TYPE_MAPPING] 59 new_value = unicode(_TYPE_MAPPING.get(results["name"].value)) 61 return Name(new_value, prefix=node.prefix)
|
fix_xreadlines.py | 8 from ..fixer_util import Name 23 no_call.replace(Name(u"__iter__", prefix=no_call.prefix))
|
fix_zip.py | 12 from ..fixer_util import Name, Call, in_special_context 33 new = Call(Name(u"list"), [new])
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
fix_asserts.py | 6 from ..fixer_util import Name 33 name = results["meth"][0] 34 name.replace(Name(NAMES[str(name)], prefix=name.prefix))
|