Searched defs:te (Results 1 - 25 of 58) sorted by relevance

123

/external/ipsec-tools/src/racoon/
H A Dthrottle.c75 struct throttle_entry *te; local
78 len = sizeof(*te)
82 if ((te = racoon_malloc(len)) == NULL)
85 te->penalty = time(NULL) + isakmp_cfg_config.auth_throttle;
86 memcpy(&te->host, addr, sysdep_sa_len(addr));
87 TAILQ_INSERT_HEAD(&throttle_list, te, next);
89 return te;
97 struct throttle_entry *te; local
107 RACOON_TAILQ_FOREACH_REVERSE(te, &throttle_list, throttle_list, next) {
111 if (te
[all...]
/external/annotation-tools/scene-lib/src/annotations/el/
H A DTypeASTMapper.java44 private static ATypeElement getInnerType(ATypeElement te, argument
47 return te;
49 return te.innerTypes.vivify(new InnerTypeLocation(ls));
74 private void traverse1(N n, ATypeElement te, List<TypePathEntry> ls) { argument
79 // n, te, ls, getInnerType(te, ls));
80 map(n, getInnerType(te, ls));
84 traverse1(getTypeArgument(n, tai), te, ls);
89 // n, te, ls, getInnerType(te, l
[all...]
/external/lisa/experiments/
H A Drun_binder_throughput.py61 te = TestEnv(conf, wipe=False) variable
62 target = te.target
108 out_file = os.path.join(te.res_dir,
118 out_file = os.path.join(te.res_dir,
H A Drun_binder_transaction_tracing.py62 te = TestEnv(conf, wipe=False) variable
63 target = te.target
103 te, os.path.join(te.res_dir, 'trace.html'), conf=conf)
114 System.systrace_wait(te, systrace_output)
115 te.platform_dump(te.res_dir)
H A Drun_camera.py62 wload = Workload.getInstance(te, args.workload)
64 outdir=te.res_dir + '_' + args.out_prefix
80 te.platform_dump(te.res_dir)
82 te._log.info('RESULTS are in out directory: {}'.format(outdir))
129 te = TestEnv(my_conf, wipe=False) variable
130 target = te.target
H A Drun_display_image.py65 wload = Workload.getInstance(te, 'DisplayImage')
67 outdir=te.res_dir + '_' + args.out_prefix
81 te.platform_dump(te.res_dir)
83 te._log.info('RESULTS are in out directory: {}'.format(outdir))
124 te = TestEnv(my_conf, wipe=False) variable
125 target = te.target
H A Drun_idle_resume.py59 wload = Workload.getInstance(te, 'IdleResume')
61 outdir=te.res_dir + '_' + args.out_prefix
73 te.platform_dump(te.res_dir)
75 te._log.info('RESULTS are in out directory: {}'.format(outdir))
118 te = TestEnv(my_conf, wipe=False) variable
119 target = te.target
H A Drun_jankbench.py78 def print_results(te, test_outdir, test_name, wload):
81 te._log.info("==============================================")
82 te._log.info("JANKBENCH TEST RESULT: Frame stats: {}".format(test_name))
85 te._log.info(s)
86 te._log.info("==============================================")
90 te._log.info("Running test {}".format(test_name))
94 System.reimage(te, args.kernel_path, args.reimage)
97 wload = Workload.getInstance(te, 'Jankbench', args.reinstall)
99 outdir=te.res_dir + '_' + args.out_prefix
104 te
162 te = TestEnv(my_conf, wipe=False) variable
[all...]
H A Drun_suspend_resume.py59 wload = Workload.getInstance(te, 'SuspendResume')
61 outdir=te.res_dir + '_' + args.out_prefix
73 te.platform_dump(te.res_dir)
75 te._log.info('RESULTS are in out directory: {}'.format(outdir))
118 te = TestEnv(my_conf, wipe=False) variable
119 target = te.target
H A Drun_sysui.py73 te._log.info("Running test {}".format(test_name))
77 wload = Workload.getInstance(te, 'SystemUi')
79 outdir=te.res_dir + '_' + args.out_prefix
84 te._log.info("Running all tests: {}".format(wload.test_list))
94 te.platform_dump(te.res_dir)
96 te._log.info('RESULTS are in out directory: {}'.format(outdir))
143 te = TestEnv(my_conf, wipe=False) variable
144 target = te.target
H A Drun_uibench.py80 te._log.info("Running test {}".format(test_name))
84 System.reimage(te, args.kernel_path, args.reimage)
87 wload = Workload.getInstance(te, 'UiBench', args.reinstall)
89 outdir=te.res_dir + '_' + args.out_prefix
94 te._log.info("Running all tests: {}".format(wload.test_list))
105 te.platform_dump(te.res_dir)
107 te._log.info('RESULTS are in out directory: {}'.format(outdir))
150 te = TestEnv(my_conf, wipe=False) variable
151 target = te
[all...]
H A Drun_youtube.py54 wload = Workload.getInstance(te, 'YouTube')
56 outdir=te.res_dir + '_' + args.out_prefix
67 te.platform_dump(te.res_dir)
69 te._log.info('RESULTS are in out directory: {}'.format(outdir))
112 te = TestEnv(my_conf, wipe=False) variable
113 target = te.target
H A Drun_uibench_cgroup.py63 wload = Workload.getInstance(te, 'UiBench')
76 te.platform_dump(te.res_dir)
78 te._log.info('RESULTS are in out directory: {}'.format(outdir))
126 te = TestEnv(my_conf, wipe=False) variable
127 target = te.target
129 outdir=te.res_dir + '_' + args.out_prefix
/external/mesa3d/src/gallium/state_trackers/wgl/
H A Dstw_tls.c81 THREADENTRY32 te; local
82 te.dwSize = sizeof te;
83 if (Thread32First(hSnapshot, &te)) {
85 if (te.dwSize >= FIELD_OFFSET(THREADENTRY32, th32OwnerProcessID) +
86 sizeof te.th32OwnerProcessID) {
87 if (te.th32OwnerProcessID == dwCurrentProcessId) {
88 if (te.th32ThreadID != dwCurrentThreadId) {
90 data = stw_tls_data_create(te.th32ThreadID);
100 te
[all...]
/external/libevent/test/
H A Dbench_cascade.c85 static struct timeval ts, te, tv_timeout; local
124 evutil_gettimeofday(&te, NULL);
125 evutil_timersub(&te, &ts, &te);
136 return (&te);
H A Dbench.c101 static struct timeval ts, te; local
126 evutil_gettimeofday(&te, NULL);
131 evutil_timersub(&te, &ts, &te);
133 return (&te);
/external/lisa/experiments/power/profile/
H A Drun_camera_avg.py53 wload = Workload.getInstance(te, 'AppStartup')
55 outdir=te.res_dir + '_' + args.out_prefix
77 te.platform_dump(te.res_dir)
79 te._log.info('RESULTS are in out directory: {}'.format(outdir))
118 te = TestEnv(my_conf, wipe=False) variable
119 target = te.target
H A Drun_camera_flashlight.py54 wload = Workload.getInstance(te, 'AppStartup')
56 outdir=te.res_dir + '_' + args.out_prefix
78 te.platform_dump(te.res_dir)
80 te._log.info('RESULTS are in out directory: {}'.format(outdir))
119 te = TestEnv(my_conf, wipe=False) variable
120 target = te.target
H A Drun_gps_on.py53 wload = Workload.getInstance(te, 'AppStartup')
55 outdir=te.res_dir + '_' + args.out_prefix
71 te.platform_dump(te.res_dir)
73 te._log.info('RESULTS are in out directory: {}'.format(outdir))
112 te = TestEnv(my_conf, wipe=False) variable
113 target = te.target
/external/lisa/experiments/scratch/
H A Drun_suspend_resume_b63331203.py62 wload = Workload.getInstance(te, 'SuspendResume')
64 outdir=te.res_dir + '_' + args.out_prefix
76 te.platform_dump(te.res_dir)
78 te._log.info('RESULTS are in out directory: {}'.format(outdir))
125 te = TestEnv(my_conf, wipe=False) variable
126 target = te.target
/external/lisa/experiments/power/eas/
H A Drun_cpu_frequency.py79 te.emeter.reset()
85 te.emeter.report(outdir, out_energy=energy, out_samples=samples)
205 outdir=te.res_dir + '_' + args.out_prefix
268 te.platform_dump(outdir)
270 te._log.info('RESULTS are in out directory: {}'.format(outdir))
313 te = TestEnv(my_conf, wipe=False) variable
314 target = te.target
315 CLUSTERS = te.topology.get_level('cluster')
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_type.c333 LLVMTypeRef te = LLVMGetElementType(t); local
334 LLVMTypeKind ke = LLVMGetTypeKind(te);
337 unsigned b = LLVMGetIntTypeWidth(te);
345 LLVMTypeRef te = LLVMGetElementType(t); local
346 LLVMTypeKind ke = LLVMGetTypeKind(te);
355 LLVMTypeRef te = LLVMGetElementType(t); local
357 lp_dump_llvmtype(te);
/external/syslinux/com32/libupload/
H A Dupload_tftp.c105 struct tftp_error *te = (struct tftp_error *)(ur+1); local
106 if (te->errcode == TFTP_ERR_UNKNOWN_ERROR) {
107 tftp_string_error_message[TFTP_ERR_UNKNOWN_ERROR]=strdup(te->errmsg);
109 err=-ntohs(te->errcode); // Return the associated error code
/external/llvm/include/llvm/CodeGen/
H A DMachineTraceMetrics.h244 explicit Trace(Ensemble &te, TraceBlockInfo &tbi) : TE(te), TBI(tbi) {} argument
/external/valgrind/coregrind/m_debuginfo/
H A Dtytypes.c51 Bool ML_(TyEnt__is_type)( const TyEnt* te )
53 switch (te->tag) {
83 void ML_(pp_TyEnt)( const TyEnt* te )
85 VG_(printf)("0x%05lx ", te->cuOff);
86 switch (te->tag) {
91 VG_(printf)("INDIR(0x%05lx)", te->Te.INDIR.indR);
98 te->Te.Atom.valueKnown ? "" : "unknown:",
99 te->Te.Atom.value, te->Te.Atom.name);
102 if (te
368 TyEnt* te; local
[all...]

Completed in 331 milliseconds

123