/device/google/contexthub/util/stm32_flash/ |
i2c.h | 24 handle_t handle; 29 uint8_t i2c_write_data(handle_t *handle, uint8_t *buffer, int length); 30 uint8_t i2c_write_cmd(handle_t *handle, uint8_t cmd); 31 uint8_t i2c_read_data(handle_t *handle, uint8_t *data, int length); 32 uint8_t i2c_read_ack(handle_t *handle); 33 int i2c_init(handle_t *handle);
|
spi.h | 24 handle_t handle; 28 uint8_t spi_write_data(handle_t *handle, uint8_t *buffer, int length); 29 uint8_t spi_write_cmd(handle_t *handle, uint8_t cmd); 30 uint8_t spi_read_data(handle_t *handle, uint8_t *data, int length); 31 uint8_t spi_read_ack(handle_t *handle); 32 int spi_init(handle_t *handle);
|
i2c.c | 26 uint8_t i2c_write_data(handle_t *handle, uint8_t *buffer, int length) 38 uint8_t i2c_write_cmd(handle_t *handle, uint8_t cmd) 48 uint8_t i2c_read_data(handle_t *handle, uint8_t *data, int length) 58 uint8_t i2c_read_ack(handle_t *handle) 68 int i2c_init(handle_t *handle)
|
stm32_bl.h | 40 } handle_t; typedef in typeref:struct:handle 42 uint8_t checksum(handle_t *handle, uint8_t *bytes, int length); 43 uint8_t erase_sector(handle_t *handle, uint16_t sector); 44 uint8_t read_memory(handle_t *handle, uint32_t addr, uint32_t length, uint8_t *buffer); 45 uint8_t write_memory(handle_t *handle, uint32_t addr, uint32_t length, uint8_t *buffer);
|
stm32_bl.c | 26 uint8_t checksum(__attribute__((unused)) handle_t *handle, uint8_t *bytes, int length) 43 static uint8_t write_len(handle_t *handle, int len) 52 static uint8_t write_cnt(handle_t *handle, uint16_t cnt) 62 static uint8_t write_addr(handle_t *handle, uint32_t addr) 75 static uint8_t write_len_data(handle_t *handle, int len, uint8_t *data) 89 static uint8_t read_ack_loop(handle_t *handle) 101 uint8_t erase_sector(handle_t *handle, uint16_t sector) 120 uint8_t read_memory(handle_t *handle, uint32_t addr, uint32_t length, uint8_t *buffer) 155 uint8_t write_memory(handle_t *handle, uint32_t addr, uint32_t length, uint8_t *buffer)
|
spi.c | 24 uint8_t spi_write_data(handle_t *handle, uint8_t *buffer, int length) 43 uint8_t spi_write_cmd(handle_t *handle, uint8_t cmd) 66 uint8_t spi_read_data(handle_t *handle, uint8_t *data, int length) 94 uint8_t spi_read_ack(handle_t *handle) 129 uint8_t spi_sync(handle_t *handle) 150 int spi_init(handle_t *handle)
|
flash.c | 68 handle_t *handle;
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
midles.h | 26 typedef handle_t MIDL_ES_HANDLE; 34 RPC_STATUS RPC_ENTRY MesEncodeIncrementalHandleCreate(void *UserState,MIDL_ES_ALLOC AllocFn,MIDL_ES_WRITE WriteFn,handle_t *pHandle); 35 RPC_STATUS RPC_ENTRY MesDecodeIncrementalHandleCreate(void *UserState,MIDL_ES_READ ReadFn,handle_t *pHandle); 36 RPC_STATUS RPC_ENTRY MesIncrementalHandleReset(handle_t Handle,void *UserState,MIDL_ES_ALLOC AllocFn,MIDL_ES_WRITE WriteFn,MIDL_ES_READ ReadFn,MIDL_ES_CODE Operation); 37 RPC_STATUS RPC_ENTRY MesEncodeFixedBufferHandleCreate(char *pBuffer,unsigned __LONG32 BufferSize,unsigned __LONG32 *pEncodedSize,handle_t *pHandle); 38 RPC_STATUS RPC_ENTRY MesEncodeDynBufferHandleCreate(char **pBuffer,unsigned __LONG32 *pEncodedSize,handle_t *pHandle); 39 RPC_STATUS RPC_ENTRY MesDecodeBufferHandleCreate(char *pBuffer,unsigned __LONG32 BufferSize,handle_t *pHandle); 40 RPC_STATUS RPC_ENTRY MesBufferHandleReset(handle_t Handle,unsigned __LONG32 HandleStyle,MIDL_ES_CODE Operation,char **pBuffer,unsigned __LONG32 BufferSize,unsigned __LONG32 *pEncodedSize); 41 RPC_STATUS RPC_ENTRY MesHandleFree(handle_t Handle); 42 RPC_STATUS RPC_ENTRY MesInqProcEncodingId(handle_t Handle,PRPC_SYNTAX_IDENTIFIER pInterfaceId,unsigned __LONG32 *pProcNum) [all...] |
rpcndr.h | 269 handle_t SavedHandle; 416 handle_t *pAutoHandle; 417 handle_t *pPrimitiveHandle; [all...] |
rpcdce.h | 36 typedef RPC_BINDING_HANDLE handle_t; typedef
|
/external/e2fsprogs/lib/ext2fs/ |
kernel-jbd.h | 77 typedef struct handle_s handle_t; /* Atomic operation type */ typedef in typeref:struct:handle_s 302 /* The handle_t type represents a single atomic update being performed 671 static inline handle_t *journal_current_handle(void) 682 extern handle_t *journal_start(journal_t *, int nblocks); 683 extern handle_t *journal_try_start(journal_t *, int nblocks); 684 extern int journal_restart (handle_t *, int nblocks); 685 extern int journal_extend (handle_t *, int nblocks); 686 extern int journal_get_write_access (handle_t *, struct buffer_head *); 687 extern int journal_get_create_access (handle_t *, struct buffer_head *); 688 extern int journal_get_undo_access (handle_t *, struct buffer_head *) [all...] |
/external/e2fsprogs/e2fsck/ |
revoke.c | 284 int journal_revoke(handle_t *handle, unsigned long blocknr, 375 int journal_cancel_revoke(handle_t *handle, struct journal_head *jh)
|