Searched refs:aHdr (Results 1 – 4 of 4) sorted by relevance
/external/sqlite/dist/orig/ |
D | shell.c | 11089 unsigned char aHdr[100]; in shell_dbinfo_command() local 11098 memcpy(aHdr, sqlite3_column_blob(pStmt,0), 100); in shell_dbinfo_command() 11105 i = get2byteInt(aHdr+16); in shell_dbinfo_command() 11108 utf8_printf(p->out, "%-20s %d\n", "write format:", aHdr[18]); in shell_dbinfo_command() 11109 utf8_printf(p->out, "%-20s %d\n", "read format:", aHdr[19]); in shell_dbinfo_command() 11110 utf8_printf(p->out, "%-20s %d\n", "reserved bytes:", aHdr[20]); in shell_dbinfo_command() 11113 unsigned int val = get4byteInt(aHdr + ofst); in shell_dbinfo_command()
|
D | sqlite3.c | 56288 volatile WalIndexHdr *aHdr = walIndexHdr(pWal); 56295 memcpy((void*)&aHdr[1], (const void*)&pWal->hdr, sizeof(WalIndexHdr)); 56297 memcpy((void*)&aHdr[0], (const void*)&pWal->hdr, sizeof(WalIndexHdr)); 57639 WalIndexHdr volatile *aHdr; /* Header in shared memory */ 57654 aHdr = walIndexHdr(pWal); 57655 memcpy(&h1, (void *)&aHdr[0], sizeof(h1)); 57657 memcpy(&h2, (void *)&aHdr[1], sizeof(h2)); 177969 u8 *aHdr = &aData[p->iPgno==1 ? 100 : 0]; 177971 p->flags = aHdr[0]; 177972 p->nCell = get2byte(&aHdr[3]); [all …]
|
/external/sqlite/dist/ |
D | shell.c | 11112 unsigned char aHdr[100]; in shell_dbinfo_command() local 11121 memcpy(aHdr, sqlite3_column_blob(pStmt,0), 100); in shell_dbinfo_command() 11128 i = get2byteInt(aHdr+16); in shell_dbinfo_command() 11131 utf8_printf(p->out, "%-20s %d\n", "write format:", aHdr[18]); in shell_dbinfo_command() 11132 utf8_printf(p->out, "%-20s %d\n", "read format:", aHdr[19]); in shell_dbinfo_command() 11133 utf8_printf(p->out, "%-20s %d\n", "reserved bytes:", aHdr[20]); in shell_dbinfo_command() 11136 unsigned int val = get4byteInt(aHdr + ofst); in shell_dbinfo_command()
|
D | sqlite3.c | 56304 volatile WalIndexHdr *aHdr = walIndexHdr(pWal); 56311 memcpy((void*)&aHdr[1], (const void*)&pWal->hdr, sizeof(WalIndexHdr)); 56313 memcpy((void*)&aHdr[0], (const void*)&pWal->hdr, sizeof(WalIndexHdr)); 57655 WalIndexHdr volatile *aHdr; /* Header in shared memory */ 57670 aHdr = walIndexHdr(pWal); 57671 memcpy(&h1, (void *)&aHdr[0], sizeof(h1)); 57673 memcpy(&h2, (void *)&aHdr[1], sizeof(h2)); 177997 u8 *aHdr = &aData[p->iPgno==1 ? 100 : 0]; 177999 p->flags = aHdr[0]; 178000 p->nCell = get2byte(&aHdr[3]); [all …]
|