HomeSort by relevance Sort by last modified time
    Searched defs:tcon (Results 1 - 6 of 6) sorted by null

  /external/u-boot/drivers/pwm/
exynos_pwm.c 26 u32 tcnt, tcmp, tcon; local
50 tcon = readl(&regs->tcon);
51 tcon |= TCON_UPDATE(channel);
53 tcon |= TCON_AUTO_RELOAD(channel);
55 tcon |= TCON4_AUTO_RELOAD;
56 writel(tcon, &regs->tcon);
58 tcon &= ~TCON_UPDATE(channel);
59 writel(tcon, &regs->tcon)
    [all...]
  /external/u-boot/arch/arm/cpu/armv7/s5p-common/
pwm.c 19 unsigned long tcon; local
21 tcon = readl(&pwm->tcon);
22 tcon |= TCON_START(pwm_id);
24 writel(tcon, &pwm->tcon);
33 unsigned long tcon; local
35 tcon = readl(&pwm->tcon);
36 tcon &= ~TCON_START(pwm_id)
66 unsigned long tcon; local
    [all...]
  /external/u-boot/arch/arm/mach-exynos/include/mach/
pwm.h 35 unsigned int tcon; member in struct:s5p_timer
  /external/u-boot/arch/arm/mach-s5pc1xx/include/mach/
pwm.h 35 unsigned int tcon; member in struct:s5p_timer
  /frameworks/base/cmds/am/src/com/android/commands/am/
Am.java 122 final String tcon = SELinux.getFileContext(file.getAbsolutePath()); local
123 if (!SELinux.checkSELinuxAccess(seLinuxContext, tcon, "file", "write")) {
128 String msg = "System server has no access to file context " + tcon;
  /external/selinux/libselinux/src/
audit2why.c 313 char * tcon; local
327 if (!PyArg_ParseTuple(args,(char *)"sssO!:audit2why",&scon,&tcon,&tclassstr,&PyList_Type, &listObj))
343 rc = sepol_context_to_sid(tcon, strlen(tcon) + 1, &tsid);

Completed in 1006 milliseconds