Searched refs:user (Results 1 - 25 of 35) sorted by relevance

12

/gem5/ext/pybind11/pybind11/
H A D__init__.py4 def get_include(user=False):
30 # Search for packages in user's home directory?
31 if user:
32 dist_cobj.user = user
/gem5/util/stats/
H A Ddbinit.py35 self.user = options.user
42 self.mydb = MySQLdb.connect(db='mysql', host=self.host, user=self.user,
49 user=self.user, passwd=self.passwd)
74 # 'name' is the user designated name for the data generated. It is
76 # 'user' identifies the user that generated the data for the given
206 # 'stat' is indexed so that a user ca
[all...]
H A Dstats.py106 source.user = options.user
123 user = None
129 user = a
130 source.listRuns(user)
420 options.user = getpass.getuser()
457 options.user = a
H A Ddb.py50 self.user = row[2]
125 self.user = ''
204 user=self.user,
241 # Desc: Prints all runs matching a given user, if no argument
243 def listRuns(self, user=None):
244 print '%-40s %-10s %-5s' % ('run name', 'user', 'id')
247 if user == None or user == run.user
[all...]
/gem5/src/arch/x86/
H A Dpagetable.cc52 user(true), uncacheable(0), global(false), patBit(0),
60 user(true), uncacheable(uncacheable), global(false), patBit(0),
71 SERIALIZE_SCALAR(user);
86 UNSERIALIZE_SCALAR(user);
H A Dpagetable_walker.cc306 entry.user = pte.u;
322 entry.user = entry.user && pte.u;
336 entry.user = entry.user && pte.u;
367 entry.user = entry.user && pte.u;
398 entry.user = pte.u;
428 entry.user = entry.user
[all...]
H A Dstacktrace.hh93 static const int user = 1; member in class:X86ISA::StackTrace
H A Dfaults.hh310 Bitfield<2> user; member in class:X86ISA::PageFault
323 bool user, bool reserved) :
329 code.user = user;
322 PageFault(Addr _addr, bool present, BaseTLB::Mode mode, bool user, bool reserved) argument
H A Dpagetable.hh80 bool user; member in struct:X86ISA::TlbEntry
H A Dstacktrace.cc202 if (addr == user)
203 symbol = "user";
/gem5/util/statetrace/arch/i686/
H A Dtracechild.hh36 #include <sys/user.h>
/gem5/src/arch/alpha/
H A Dstacktrace.hh96 user = 1, enumerator in enum:AlphaISA::StackTrace::__anon59
H A Dkernel_stats.hh48 enum cpu_mode { kernel, user, idle, cpu_mode_num }; enumerator in enum:AlphaISA::Kernel::cpu_mode
H A Dstacktrace.cc150 stack.push_back(user);
349 if (addr == user)
350 symbol = "user";
/gem5/src/arch/mips/
H A Dstacktrace.hh93 static const int user = 1; member in class:MipsISA::StackTrace
H A Dstacktrace.cc116 stack.push_back(user);
/gem5/util/statetrace/arch/arm/
H A Dtracechild.hh48 #include <sys/user.h>
/gem5/src/arch/riscv/
H A Dstacktrace.hh99 static const int user = 1; member in class:RiscvISA::StackTrace
/gem5/src/arch/power/
H A Dstacktrace.hh99 static const int user = 1; member in class:PowerISA::StackTrace
/gem5/util/statetrace/arch/amd64/
H A Dtracechild.hh36 #include <sys/user.h>
/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64si/
H A Dcsr.S82 beqz a0, finish # if no user mode, skip the rest of these checks
85 # jump to user land
99 # Make sure reading status in user mode causes an exception.
135 # Return to user mode, but skip the trapping instruction.
H A Ddirty.S33 # Set SUM=1 so user memory access is permitted
/gem5/src/arch/arm/
H A Dpmu.hh306 void attachEvent(PMU::CounterState *user);
313 void detachEvent(PMU::CounterState *user);
H A Dpmu.cc446 PMU::PMUEvent::attachEvent(PMU::CounterState *user) argument
451 userCounters.insert(user);
464 PMU::PMUEvent::detachEvent(PMU::CounterState *user) argument
466 userCounters.erase(user);
H A Dtable_walker.hh598 bool user() const function
607 static uint8_t ap(bool rw, bool user) argument
609 return ((!rw) << 2) | (user << 1);

Completed in 35 milliseconds

12