HomeSort by relevance Sort by last modified time
    Searched refs:direct (Results 1 - 25 of 2893) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/selinux/libsemanage/src/
semanage.conf 23 # "direct" - libsemanage will write directly to a module store.
31 module-store = direct
  /external/syslinux/gpxe/src/arch/x86/core/
pcidirect.c 41 PROVIDE_PCIAPI_INLINE ( direct, pci_max_bus );
42 PROVIDE_PCIAPI_INLINE ( direct, pci_read_config_byte );
43 PROVIDE_PCIAPI_INLINE ( direct, pci_read_config_word );
44 PROVIDE_PCIAPI_INLINE ( direct, pci_read_config_dword );
45 PROVIDE_PCIAPI_INLINE ( direct, pci_write_config_byte );
46 PROVIDE_PCIAPI_INLINE ( direct, pci_write_config_word );
47 PROVIDE_PCIAPI_INLINE ( direct, pci_write_config_dword );
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
dir.h 26 #define direct dirent macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
dir.h 26 #define direct dirent macro
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/proxy/
direct.go 11 type direct struct{} type
13 // Direct is a direct proxy: one that makes network connections directly.
14 var Direct = direct{}
16 func (direct) Dial(network, addr string) (net.Conn, error) {
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/proxy/
direct.go 11 type direct struct{} type
13 // Direct is a direct proxy: one that makes network connections directly.
14 var Direct = direct{}
16 func (direct) Dial(network, addr string) (net.Conn, error) {
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-i386/
call1.d 3 #error: direct GOT relocation R_386_GOT32X against `foo' without base register can not be used when making a shared object
call2.d 3 #error: direct GOT relocation R_386_GOT32X against `foo' without base register can not be used when making a shared object
jmp1.d 3 #error: direct GOT relocation R_386_GOT32X against `foo' without base register can not be used when making a shared object
jmp2.d 3 #error: direct GOT relocation R_386_GOT32X against `foo' without base register can not be used when making a shared object
load2.d 3 #error: direct GOT relocation R_386_GOT32X against `foo' without base register can not be used when making a shared object
load3.d 3 #error: direct GOT relocation R_386_GOT32X against `foo' without base register can not be used when making a shared object
pr20244-1c.d 4 #error: direct GOT relocation R_386_GOT32 against `bar' without base register can not be used when making a shared object
pr20244-2d.d 4 #error: direct GOT relocation R_386_GOT32X against `foo' without base register can not be used when making a shared object
load4a.d 4 #error: direct GOT relocation R_386_GOT32X against `foo' without base register can not be used when making a shared object
load5a.d 4 #error: direct GOT relocation R_386_GOT32X against `foo' without base register can not be used when making a shared object
  /external/syslinux/gpxe/src/arch/x86/include/gpxe/
pcidirect.h 34 PCIAPI_INLINE ( direct, pci_max_bus ) ( void ) {
48 PCIAPI_INLINE ( direct, pci_read_config_byte ) ( struct pci_device *pci,
65 PCIAPI_INLINE ( direct, pci_read_config_word ) ( struct pci_device *pci,
82 PCIAPI_INLINE ( direct, pci_read_config_dword ) ( struct pci_device *pci,
99 PCIAPI_INLINE ( direct, pci_write_config_byte ) ( struct pci_device *pci,
116 PCIAPI_INLINE ( direct, pci_write_config_word ) ( struct pci_device *pci,
133 PCIAPI_INLINE ( direct, pci_write_config_dword ) ( struct pci_device *pci,
  /art/test/594-invoke-super/smali/
invoke-super.smali 21 invoke-direct {v0}, LA;-><init>()V
28 invoke-direct {v0}, LY;-><init>()V
  /frameworks/rs/
rs_compat.spec 2 direct
  /art/test/425-invoke-super/smali/
subclass.smali 21 invoke-direct {v0}, LInvokeSuper;-><init>()V
  /art/test/552-invoke-non-existent-super/smali/
superclass.smali 21 invoke-direct {v0}, Ljava/lang/Object;-><init>()V
  /art/test/600-verifier-fails/smali/
class.smali 21 invoke-direct {v1}, Ljava/lang/Object;-><init>()V
construct.smali 22 invoke-direct {v0}, LB;->append(Ljava/lang/String;)V
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
atomic.go 17 x = atomic.AddUint64(&x, 1) // ERROR "direct assignment to atomic value"
18 _, x = 10, atomic.AddUint64(&x, 1) // ERROR "direct assignment to atomic value"
19 x, _ = atomic.AddUint64(&x, 1), 10 // ERROR "direct assignment to atomic value"
22 *y = atomic.AddUint64(y, 1) // ERROR "direct assignment to atomic value"
25 su.Counter = atomic.AddUint64(&su.Counter, 1) // ERROR "direct assignment to atomic value"
30 *sp.Counter = atomic.AddUint64(sp.Counter, 1) // ERROR "direct assignment to atomic value"
35 au[0] = atomic.AddUint64(&au[0], 1) // ERROR "direct assignment to atomic value"
39 *ap[0] = atomic.AddUint64(ap[0], 1) // ERROR "direct assignment to atomic value"
49 x, w := atomic.AddUint64(&x, 1), 10 // ERROR "direct assignment to atomic value"
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
atomic.go 17 x = atomic.AddUint64(&x, 1) // ERROR "direct assignment to atomic value"
18 _, x = 10, atomic.AddUint64(&x, 1) // ERROR "direct assignment to atomic value"
19 x, _ = atomic.AddUint64(&x, 1), 10 // ERROR "direct assignment to atomic value"
22 *y = atomic.AddUint64(y, 1) // ERROR "direct assignment to atomic value"
25 su.Counter = atomic.AddUint64(&su.Counter, 1) // ERROR "direct assignment to atomic value"
30 *sp.Counter = atomic.AddUint64(sp.Counter, 1) // ERROR "direct assignment to atomic value"
35 au[0] = atomic.AddUint64(&au[0], 1) // ERROR "direct assignment to atomic value"
39 *ap[0] = atomic.AddUint64(ap[0], 1) // ERROR "direct assignment to atomic value"
49 x, w := atomic.AddUint64(&x, 1), 10 // ERROR "direct assignment to atomic value"

Completed in 195 milliseconds

1 2 3 4 5 6 7 8 91011>>