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

1 2

  /external/syslinux/gpxe/src/drivers/block/
scsi.c 72 scsi, SCSI_CDB_DATA ( command->cdb ) );
84 scsi, SCSI_CDB_DATA ( command->cdb ), strerror ( rc ) );
94 scsi, SCSI_CDB_DATA ( command->cdb ), strerror ( rc ) );
101 "%02x\n", scsi, SCSI_CDB_DATA ( command->cdb ),
122 struct scsi_cdb_read_10 *cdb = &command.cdb.read10; local
126 cdb->opcode = SCSI_OPCODE_READ_10;
127 cdb->lba = cpu_to_be32 ( block );
128 cdb->len = cpu_to_be16 ( count );
147 struct scsi_cdb_read_16 *cdb = &command.cdb.read16 local
172 struct scsi_cdb_write_10 *cdb = &command.cdb.write10; local
197 struct scsi_cdb_write_16 *cdb = &command.cdb.write16; local
218 struct scsi_cdb_read_capacity_10 *cdb = &command.cdb.readcap10; local
247 struct scsi_cdb_read_capacity_16 *cdb = &command.cdb.readcap16; local
    [all...]
srp.c 251 memcpy ( &cmd->cdb, &srp->command->cdb, sizeof ( cmd->cdb ) );
  /external/clang/bindings/python/tests/cindex/
test_cdb.py 14 cdb = CompilationDatabase.fromDirectory(path)
22 cdb = CompilationDatabase.fromDirectory(kInputsDir)
26 cdb = CompilationDatabase.fromDirectory(kInputsDir)
27 assert cdb.getCompileCommands('file_do_not_exist.cpp') == None
31 cdb = CompilationDatabase.fromDirectory(kInputsDir)
32 cmds = cdb.getCompileCommands('/home/john.doe/MyProject/project.cpp')
37 cdb = CompilationDatabase.fromDirectory(kInputsDir)
38 cmds = cdb.getAllCompileCommands()
63 cdb = CompilationDatabase.fromDirectory(kInputsDir)
65 cmds = cdb.getCompileCommands(file
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
scsi.h 48 /** A SCSI "READ (10)" CDB */
70 /** A SCSI "READ (16)" CDB */
92 /** A SCSI "WRITE (10)" CDB */
114 /** A SCSI "WRITE (16)" CDB */
136 /** A SCSI "READ CAPACITY (10)" CDB */
161 /** A SCSI "READ CAPACITY (16)" CDB */
209 #define SCSI_CDB_DATA(cdb) \
210 (cdb).bytes[0], (cdb).bytes[1], (cdb).bytes[2], (cdb).bytes[3],
220 union scsi_cdb cdb; member in struct:scsi_command
    [all...]
iscsi.h 261 /** SCSI Command Descriptor Block (CDB) */
262 union scsi_cdb cdb; member in struct:iscsi_bhs_scsi_command
srp.h 449 /** Additional CDB length */
452 union scsi_cdb cdb; member in struct:srp_cmd
775 * The longest IU is a SRP_CMD with no additional CDB and two direct
  /external/clang/tools/scan-build-py/tests/functional/cases/
test_from_cdb.py 31 def run_analyzer(directory, cdb, args):
32 cmd = ['analyze-build', '--cdb', cdb, '--output', directory] \
40 cdb = prepare_cdb('regular', tmpdir)
41 exit_code, reportdir = run_analyzer(tmpdir, cdb, [])
46 cdb = prepare_cdb('clean', tmpdir)
47 exit_code, reportdir = run_analyzer(tmpdir, cdb, [])
52 cdb = prepare_cdb('clean', tmpdir)
53 exit_code, reportdir = run_analyzer(tmpdir, cdb, ['--keep-empty'])
60 cdb = prepare_cdb('regular', tmpdir
    [all...]
test_create_cdb.py 18 result = os.path.join(tmpdir, 'cdb.json')
21 ['intercept-build', '--cdb', result] + make)
38 result = os.path.join(tmpdir, 'cdb.json')
40 silent_check_call(['intercept-build', '--cdb', result,
55 result = os.path.join(tmpdir, 'cdb.json')
57 silent_check_call(['intercept-build', '--cdb', result,
70 result = os.path.join(tmpdir, 'cdb.json')
73 ['intercept-build', '--cdb', result] + make)
81 result = os.path.join(tmpdir, 'cdb.json')
84 ['intercept-build', '--cdb', result] + make
    [all...]
  /external/libusb/examples/
xusb.c 316 uint8_t *cdb, uint8_t direction, int data_length, uint32_t *ret_tag)
323 if (cdb == NULL) {
332 cdb_len = cdb_length[cdb[0]];
335 cdb[0], cdb_len);
351 memcpy(cbw.CBWCB, cdb, cdb_len);
367 printf(" sent %d CDB bytes\n", cdb_len);
420 uint8_t cdb[16]; // SCSI Command Descriptor Block local
429 memset(cdb, 0, sizeof(cdb));
430 cdb[0] = 0x03; // Request Sens
461 uint8_t cdb[16]; \/\/ SCSI Command Descriptor Block local
    [all...]
  /bionic/libc/kernel/uapi/linux/
virtio_scsi.h 36 __u8 cdb[VIRTIO_SCSI_CDB_SIZE]; member in struct:virtio_scsi_cmd_req
46 __u8 cdb[VIRTIO_SCSI_CDB_SIZE]; member in struct:virtio_scsi_cmd_req_pi
  /external/kernel-headers/original/uapi/linux/
virtio_scsi.h 32 /* Default values of the CDB and sense data size configuration fields */
50 __u8 cdb[VIRTIO_SCSI_CDB_SIZE]; member in struct:virtio_scsi_cmd_req
62 __u8 cdb[VIRTIO_SCSI_CDB_SIZE]; member in struct:virtio_scsi_cmd_req_pi
  /device/linaro/bootloader/arm-trusted-firmware/drivers/ufs/
ufs.c 189 /* CDB address should be aligned with 128 bytes */
233 upiu->cdb[0] = op;
248 upiu->cdb[1] = RW_WITHOUT_CACHE;
250 upiu->cdb[2] = (ulba >> 24) & 0xff;
251 upiu->cdb[3] = (ulba >> 16) & 0xff;
252 upiu->cdb[4] = (ulba >> 8) & 0xff;
253 upiu->cdb[5] = ulba & 0xff;
255 upiu->cdb[7] = (lba_cnt >> 8) & 0xff;
256 upiu->cdb[8] = lba_cnt & 0xff;
262 upiu->cdb[1] = RW_WITHOUT_CACHE
    [all...]
  /external/f2fs-tools/tools/sg_write_buffer/include/
sg_pt.h 87 /* Set the CDB (command descriptor block) */
88 void set_scsi_pt_cdb(struct sg_pt_base * objp, const unsigned char * cdb,
  /external/clang/tools/scan-build-py/libscanbuild/
intercept.py 83 if 'append' in args and args.append and os.path.isfile(args.cdb):
84 with open(args.cdb) as handle:
110 with open(args.cdb, 'w+') as handle:
289 '--cdb',
analyze.py 63 if os.path.exists(args.cdb):
64 os.unlink(args.cdb)
113 with open(args.cdb, 'r') as handle:
309 '--cdb',
report.py 79 prefix = commonprefix_from(args.cdb) if use_cdb else os.getcwd()
92 shutil.copy(args.cdb, output_dir)
  /external/selinux/libsepol/cil/src/
cil_binary.h 162 int cil_typeattribute_to_bitmap(policydb_t *pdb, const struct cil_db *cdb, struct cil_typeattribute *cil_attr);
  /device/linaro/bootloader/edk2/OptionRomPkg/UndiRuntimeDxe/
Decode.c     [all...]
  /external/fio/engines/
sg.c 23 unsigned char cdb[16]; // enhanced from 10 to support 16 byte commands member in struct:sgio_cmd
44 memset(sc->cdb, 0, sizeof(sc->cdb));
47 hdr->cmdp = sc->cdb;
48 hdr->cmd_len = sizeof(sc->cdb);
  /external/syslinux/gpxe/src/net/tcp/
iscsi.c 228 memcpy ( &command->cdb, &iscsi->command->cdb, sizeof ( command->cdb ));
230 iscsi, SCSI_CDB_DATA ( command->cdb ),
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/include/drivers/
ufs.h 365 * A CDB has a fixed length of 16bytes or a variable length
368 uint8_t cdb[16]; /* little endian */ member in struct:cmd_upiu
369 } cmd_upiu_t; /* 32 bytes with big endian except for cdb[] */
  /external/f2fs-tools/tools/sg_write_buffer/
sg_pt_linux.c 518 set_scsi_pt_cdb(struct sg_pt_base * vp, const unsigned char * cdb,
525 ptp->io_hdr.request = (__u64)(sg_uintptr_t)cdb;
867 pr2ws("No SCSI command (cdb) given\n");
941 pr2ws("No SCSI command (cdb) given (v4)\n");
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
insns16-s-unit-pcrel.d 43 [0-9a-f]+[02468ace] <[^>]*> 3cdb[ \t]+callp \.S2 [0-9a-f]{8} <[^+]*\+0x38c>,b3
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/s390/
esa-g5.s 88 cdb %f6,4095(%r5,%r10)
  /external/clang/bindings/python/clang/
cindex.py     [all...]

Completed in 1976 milliseconds

1 2