Home
last modified time | relevance | path

Searched refs:pKey (Results 1 – 13 of 13) sorted by relevance

/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dhash.c59 if( pH->copyKey && elem->pKey ){ in sqliteHashClear()
60 sqliteFree(elem->pKey); in sqliteHashClear()
83 uptr x = Addr(pKey);
218 if( (*xCompare)(elem->pKey,elem->nKey,pKey,nKey)==0 ){ in findElementGivenHash()
251 sqliteFree(elem->pKey); in removeElementGivenHash()
269 h = (*xHash)(pKey,nKey); in sqliteHashFind()
300 hraw = (*xHash)(pKey, nKey); in sqliteHashInsert()
316 if( pH->copyKey && pKey!=0 ){ in sqliteHashInsert()
318 if( new_elem->pKey==0 ){ in sqliteHashInsert()
322 memcpy((void*)new_elem->pKey, pKey, nKey); in sqliteHashInsert()
[all …]
H A Dhash.h53 void *pKey; int nKey; /* Key associated with this element */ member
82 void *sqliteHashInsert(Hash*, const void *pKey, int nKey, void *pData);
83 void *sqliteHashFind(const Hash*, const void *pKey, int nKey);
101 #define sqliteHashKey(E) ((E)->pKey)
H A Dbtree.h71 int (*Moveto)(BtCursor*, const void *pKey, int nKey, int *pRes);
73 int (*Insert)(BtCursor*, const void *pKey, int nKey,
81 int (*KeyCompare)(BtCursor*, const void *pKey, int nKey,
121 #define sqliteBtreeMoveto(pCur, pKey, nKey, pRes)\ argument
122 (btCOps(pCur)->Moveto(pCur, pKey, nKey, pRes))
124 #define sqliteBtreeInsert(pCur, pKey, nKey, pData, nData) \ argument
125 (btCOps(pCur)->Insert(pCur, pKey, nKey, pData, nData))
133 #define sqliteBtreeKeyCompare(pCur, pKey, nKey, nIgnore, pRes)\ argument
134 (btCOps(pCur)->KeyCompare(pCur, pKey, nKey, nIgnore, pRes))
H A Dbtree_rb.c59 void *pKey; member
122 void *pKey; member
136 const void *pKey,
747 const void *pKey, in memRbtreeInsert() argument
788 memcpy(pNode->pKey, pKey, nKey); in memRbtreeInsert()
825 memcpy( pOp->pKey, pNode->pKey, pOp->nKey ); in memRbtreeInsert()
841 memcpy( pOp->pKey, pCur->pNode->pKey, pOp->nKey ); in memRbtreeInsert()
873 const void *pKey, in memRbtreeMoveto() argument
946 pOp->pKey = pZ->pKey; in memRbtreeDelete()
971 pZ->pKey = pCur->pNode->pKey; in memRbtreeDelete()
[all …]
H A Dattach.c26 void sqliteAttach(Parse *pParse, Token *pFilename, Token *pDbname, Token *pKey){ in sqliteAttach() argument
99 if( pKey && pKey->z && pKey->n ){ in sqliteAttach()
100 sqliteSetNString(&zKey, pKey->z, pKey->n, 0); in sqliteAttach()
H A Dbtree.c1327 const void *pKey, /* Key to compare against entry that pCur points to */ in fileBtreeKeyCompare() argument
1336 const char *zKey = (const char*)pKey; in fileBtreeKeyCompare()
1585 int fileBtreeMoveto(BtCursor *pCur, const void *pKey, int nKey, int *pRes){ in fileBtreeMoveto() argument
1600 rc = fileBtreeKeyCompare(pCur, pKey, nKey, 0, &c); in fileBtreeMoveto()
1912 const void *pKey, int nKey, /* The key */ in fillInCell() argument
1934 pPayload = pKey; in fillInCell()
1935 pKey = 0; in fillInCell()
2621 const void *pKey, int nKey, /* The key of the new record */ in fileBtreeInsert() argument
2645 rc = fileBtreeMoveto(pCur, pKey, nKey, &loc); in fileBtreeInsert()
2651 rc = fillInCell(pBt, &newCell, pKey, nKey, pData, nData); in fileBtreeInsert()
H A Dsqlite.h.in821 ** Open an encrypted SQLite database. If pKey==0 or nKey==0, this routine
829 const void *pKey, /* Pointer to the key */
845 const void *pKey, int nKey /* The new key */
/PHP-5.3/sapi/pi3web/
H A Dpi3web_sapi.c85 PCHAR pKey; in php_info_pi3web() local
86 PIDBIterator_current( pIter, &pKey ); in php_info_pi3web()
87 if ( !pKey ) { /* sanity */ continue; }; in php_info_pi3web()
90 if (lpCB->GetServerVariable(lpCB->ConnID, pKey, variable_buf, &variable_len) in php_info_pi3web()
92 php_info_print_table_row(2, pKey, variable_buf); in php_info_pi3web()
99 php_info_print_table_row(2, pKey, tmp_variable_buf); in php_info_pi3web()
292 PCHAR pKey; in sapi_pi3web_register_variables() local
293 PIDBIterator_current( pIter, &pKey ); in sapi_pi3web_register_variables()
294 if ( !pKey ) { /* sanity */ continue; }; in sapi_pi3web_register_variables()
299 php_register_variable(pKey, static_variable_buf, track_vars_array TSRMLS_CC); in sapi_pi3web_register_variables()
[all …]
/PHP-5.3/sapi/litespeed/
H A Dlsapi_main.c208 static int add_variable( const char * pKey, int keyLen, const char * pValue, int valLen, in add_variable() argument
213 register char * pKey1 = (char *)pKey; in add_variable()
234 register char * pKey1 = (char *)pKey; in add_variable_magic_quote()
529 static int alter_ini( const char * pKey, int keyLen, const char * pValue, int valLen, in alter_ini() argument
533 if ( '\001' == *pKey ) { in alter_ini()
534 ++pKey; in alter_ini()
535 if ( *pKey == 4 ) { in alter_ini()
538 ++pKey; in alter_ini()
540 if (( keyLen == 7 )&&( strncasecmp( pKey, "engine", 6 )== 0 )) in alter_ini()
546 zend_alter_ini_entry((char *)pKey, keyLen, in alter_ini()
[all …]
H A Dlsapilib.c385 pEnvList->pKey = *pBegin; in parseEnv()
1119 char *pKey; in GetHeaderVar() local
1128 pKeyEnd = pKey + keyLen; in GetHeaderVar()
1132 char ch = toupper( *pKey ); in GetHeaderVar()
1136 ++p; ++pKey; in GetHeaderVar()
1192 char *pKey; in LSAPI_ForeachOrgHeader_r() local
1203 ret = (*fn)( pKey, keyLen, in LSAPI_ForeachOrgHeader_r()
1243 char *pKey; in LSAPI_ForeachHeader_r() local
1256 pKeyEnd = pKey + keyLen; in LSAPI_ForeachHeader_r()
1260 while( pKey < pKeyEnd ) { in LSAPI_ForeachHeader_r()
[all …]
H A Dlsapilib.h69 char * pKey; member
136 typedef int (*LSAPI_CB_EnvHandler )( const char * pKey, int keyLen,
/PHP-5.3/ext/sqlite3/libsqlite/
H A Dsqlite3.h4204 const void *pKey, int nKey /* The key */
4217 const void *pKey, int nKey /* The new key */
H A Dsqlite3.c21953 elem->pKey = pKey; in sqlite3HashInsert()
21961 new_elem->pKey = pKey; in sqlite3HashInsert()
48104 pCur->pKey = pKey;
48175 if( pKey ){
48184 if( pKey ){
81076 if( pKey ){
81078 pKey->aSortOrder = (u8 *)&(pKey->aColl[nCol]);
81091 pKey = 0;
117300 if( nInput>=pKey->n && 0==memcmp(zInput, pKey->z, pKey->n) ){
118241 memcpy((void*)new_elem->pKey, pKey, nKey);
[all …]

Completed in 318 milliseconds