HomeSort by relevance Sort by last modified time
    Searched defs:te (Results 1 - 25 of 208) sorted by null

1 2 3 4 5 6 7 8 9

  /external/ipsec-tools/src/racoon/
throttle.c 75 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->penalty < now)
    [all...]
  /external/lisa/experiments/
run_camera.py 46 wload = Workload.getInstance(te, args.workload)
48 outdir=te.res_dir + '_' + args.out_prefix
64 te.platform_dump(te.res_dir)
66 te._log.info('RESULTS are in out directory: {}'.format(outdir))
111 te = TestEnv(my_conf, wipe=False) variable
112 target = te.target
run_idle_resume.py 43 wload = Workload.getInstance(te, 'IdleResume')
45 outdir=te.res_dir + '_' + args.out_prefix
57 te.platform_dump(te.res_dir)
59 te._log.info('RESULTS are in out directory: {}'.format(outdir))
100 te = TestEnv(my_conf, wipe=False) variable
101 target = te.target
run_suspend_resume.py 43 wload = Workload.getInstance(te, 'SuspendResume')
45 outdir=te.res_dir + '_' + args.out_prefix
57 te.platform_dump(te.res_dir)
59 te._log.info('RESULTS are in out directory: {}'.format(outdir))
100 te = TestEnv(my_conf, wipe=False) variable
101 target = te.target
run_uibench.py 42 wload = Workload.getInstance(te, 'UiBench')
44 outdir=te.res_dir + '_' + args.out_prefix
56 te.platform_dump(te.res_dir)
58 te._log.info('RESULTS are in out directory: {}'.format(outdir))
99 te = TestEnv(my_conf, wipe=False) variable
100 target = te.target
run_uibench_cgroup.py 47 wload = Workload.getInstance(te, 'UiBench')
49 outdir=te.res_dir + '_' + args.out_prefix
61 te.platform_dump(te.res_dir)
63 te._log.info('RESULTS are in out directory: {}'.format(outdir))
109 te = TestEnv(my_conf, wipe=False) variable
110 target = te.target
run_youtube.py 38 wload = Workload.getInstance(te, 'YouTube')
40 outdir=te.res_dir + '_' + args.out_prefix
51 te.platform_dump(te.res_dir)
53 te._log.info('RESULTS are in out directory: {}'.format(outdir))
94 te = TestEnv(my_conf, wipe=False) variable
95 target = te.target
  /external/lisa/experiments/scratch/
run_suspend_resume_b63331203.py 46 wload = Workload.getInstance(te, 'SuspendResume')
48 outdir=te.res_dir + '_' + args.out_prefix
60 te.platform_dump(te.res_dir)
62 te._log.info('RESULTS are in out directory: {}'.format(outdir))
109 te = TestEnv(my_conf, wipe=False) variable
110 target = te.target
  /device/google/contexthub/firmware/app/test0.app/
test_app0.c 49 const struct TimerEvent *te; local
58 te = evtData;
59 eOsLog(LOG_INFO, "App 0 received timer %u callback: %d (TIM: %lld, RTC: %lld, SENSOR: %lld, HOST: %lld)\n", te->timerId, *(int *)te->data, eOsTimGetTime(), eOsRtcGetTime(), eOsSensorGetTime(), eOsHostGetTime());
64 extMsg->val = *(int *)te->data;
68 eOsTimTimerCancel(te->timerId);
  /external/guice/extensions/persist/test/com/google/inject/persist/jpa/
EntityManagerPerRequestProvisionTest.java 61 JpaTestEntity te = new JpaTestEntity(); local
63 dao.persist(te);
73 + " (persistent object does not persist)", dao.contains(te));
81 JpaTestEntity te = new JpaTestEntity(); local
83 dao.persist(te);
95 + " (persistent object doesnt persist)", dao.contains(te));
EntityManagerProvisionTest.java 56 JpaTestEntity te = new JpaTestEntity(); local
58 dao.persist(te);
68 + " (persistent object persists)", dao.contains(te));
76 JpaTestEntity te = new JpaTestEntity(); local
78 dao.persist(te);
88 + " (persistent object persists)", dao.contains(te));
DynamicFinderTest.java 61 JpaTestEntity te = new JpaTestEntity(); local
62 te.setText("HIAjsOKAOSD" + new Date() + UUID.randomUUID());
64 dao.persist(te);
74 assertEquals(te, list.get(0));
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_tls.c 81 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.dwSize = sizeof te
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorInclude.java 168 catch(TransformerException te)
170 handler.error(te.getMessage(), te); local
325 catch(TransformerException te)
327 handler.error(te.getMessage(), te); local
ProcessorOutputElem.java 210 catch(TransformerException te)
212 handler.error(te.getMessage(), te); local
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemExtensionCall.java 222 TransformerException te = new TransformerException(XSLMessages.createMessage( local
224 transformer.getErrorListener().fatalError(te);
244 TransformerException te = (TransformerException)e; local
245 if(null == te.getLocator())
246 te.setLocator(this);
248 transformer.getErrorListener().fatalError(te);
ElemValueOf.java 252 TransformerException te = new TransformerException(re); local
253 te.setLocator(this);
254 throw te;
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_type.c 333 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/
upload_tftp.c 105 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
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
bits.c 699 TermEntry *te; local
754 te=(TermEntry *) hash_get(Tname,TokenString(i)); /* MR11 */
755 if (te == NULL || te->akaString == NULL) { /* MR11 */
759 fprintf(Parser_c, ",\n\t/* %02d */\t\"%s\"", i, te->akaString); /* MR11 */
873 TermEntry *te; local
947 te=(TermEntry *) hash_get(Tname,TokenString(i)); /* MR11 */
948 if (te == NULL || te->akaString == NULL) { /* MR11 */
951 fprintf(ErrFile, ",\n\t/* %02d */\t\"%s\"", i, te->akaString); /* MR11 */
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
Expression.java 452 TransformerException te = new TransformerException(fmsg, this); local
454 eh.fatalError(te);
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Variable.java 146 TransformerException te = new TransformerException(msg, this); local
148 throw new org.apache.xml.utils.WrappedRuntimeException(te);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
TailoredSet.java 244 Entry te = null, be = null; local
248 te = prefixes.next();
249 tp = te.chars.toString();
251 te = null;
270 assert (te != null);
271 addPrefix(data, tp, c, te.value);
272 te = null;
282 assert (te != null && be != null);
283 compare(c, te.value, be.value);
285 te = be = null
301 Entry te = null, be = null; local
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
TailoredSet.java 242 Entry te = null, be = null; local
246 te = prefixes.next();
247 tp = te.chars.toString();
249 te = null;
268 assert (te != null);
269 addPrefix(data, tp, c, te.value);
270 te = null;
280 assert (te != null && be != null);
281 compare(c, te.value, be.value);
283 te = be = null
299 Entry te = null, be = null; local
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
tytypes.c 51 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)
368 TyEnt* te; local
    [all...]

Completed in 821 milliseconds

1 2 3 4 5 6 7 8 9