Lines Matching refs:handle

186 typedef s32 (*NHTTPConnectionCallback)(NHTTPConnectionHandle handle, NHTTPConnectionEvent event, vo…
255 s32 NHTTP_DestroyConnection(NHTTPConnectionHandle handle);
256 s32 NHTTP_StartConnection(NHTTPConnectionHandle handle);
257 s32 NHTTP_StartConnectionAsync(NHTTPConnectionHandle handle);
258 s32 NHTTP_CancelConnection(NHTTPConnectionHandle handle);
259 s32 NHTTP_WaitForConnection(NHTTPConnectionHandle handle);
260 s32 NHTTP_GetConnectionStatus(NHTTPConnectionHandle handle);
261 s32 NHTTP_GetConnectionProgress(NHTTPConnectionHandle handle, u32 *received, u32 *contentLen);
262 s32 NHTTP_GetConnectionError(NHTTPConnectionHandle handle);
263 s32 NHTTP_GetConnectionSSLError(NHTTPConnectionHandle handle);
264 void *NHTTP_GetUserParam(NHTTPConnectionHandle handle);
267 s32 NHTTP_SetVerifyOption(NHTTPConnectionHandle handle, u32 verifyOption);
268 s32 NHTTP_SetRootCA(NHTTPConnectionHandle handle, u8 *rootCAData, int rootCASize);
269 s32 NHTTP_SetInternalRootCA(NHTTPConnectionHandle handle, u32 internalCaCertId);
270 s32 NHTTP_SetRootCaStore(NHTTPConnectionHandle handle, NSSLCertStoreId rootCAId);
271 s32 NHTTP_SetClientCert(NHTTPConnectionHandle handle, u8 *clientCertData, int clientCertSize, u8 *p…
272 s32 NHTTP_SetInternalClientCert(NHTTPConnectionHandle handle, u32 internalClientCertId);
273 s32 NHTTP_SetClientCertId(NHTTPConnectionHandle handle, NSSLCertId clientCertId);
274 s32 NHTTP_RemoveClientCert(NHTTPConnectionHandle handle);
275 s32 NHTTP_RemoveRootCA(NHTTPConnectionHandle handle);
276 s32 NHTTP_SetRootCADefault(NHTTPConnectionHandle handle);
277 s32 NHTTP_SetClientCertDefault(NHTTPConnectionHandle handle);
278 s32 NHTTP_DisableVerifyOptionForDebug(NHTTPConnectionHandle handle, u32 verifyOption);
281 s32 NHTTP_SetProxy(NHTTPConnectionHandle handle, const char *proxy, u16 port, const char *userName,…
282 s32 NHTTP_SetProxyDefault(NHTTPConnectionHandle handle);
283 s32 NHTTP_SetBasicAuthorization(NHTTPConnectionHandle handle, const char *userName, const char *pas…
284 s32 NHTTP_SetSocketBufferSize(NHTTPConnectionHandle handle, u32 size);
285 s32 NHTTP_SetSocketSendBufferSize(NHTTPConnectionHandle handle, u32 size);
288 s32 NHTTP_AddHeaderField(NHTTPConnectionHandle handle, const char *label, const char *value);
290 s32 NHTTP_RemoveExistingAddedPostData(NHTTPConnectionHandle handle, const char *label, void** memor…
291 s32 NHTTP_RemovePostDataHead(NHTTPConnectionHandle handle, void** memory);
292 s32 NHTTP_GetPostDataRaw(NHTTPConnectionHandle handle, void** memory);
294 s32 NHTTP_AddPostDataAscii(NHTTPConnectionHandle handle, const char *label, const char *value, void…
295 s32 NHTTP_AddPostDataBinary(NHTTPConnectionHandle handle, const char *label, const void *value, u32…
296 s32 NHTTP_AddPostDataRaw(NHTTPConnectionHandle handle, const void *value, u32 length, void* memory);
298 s32 NHTTP_AddPostDataAscii(NHTTPConnectionHandle handle, const char *label, const char *value);
299 s32 NHTTP_AddPostDataBinary(NHTTPConnectionHandle handle, const char *label, const void *value, u32…
300 s32 NHTTP_AddPostDataRaw(NHTTPConnectionHandle handle, const void *value, u32 length);
302 s32 NHTTP_SetPostDataEncoding(NHTTPConnectionHandle handle, NHTTPEncodingType type);
303 s32 NHTTP_SetPostDataLazySet(NHTTPConnectionHandle handle, NHTTPPostDataType dataType);
306 s32 NHTTP_GetBodyBuffer(NHTTPConnectionHandle handle, char **bodyBuffer, u32 *size);
307 s32 NHTTP_AllocBodyBuffer(NHTTPConnectionHandle handle, u32 size);
308 s32 NHTTP_FreeBodyBuffer(NHTTPConnectionHandle handle);
310 s32 NHTTP_GetHeaderAll(NHTTPConnectionHandle handle, char *value, u32 maxLen);
311 s32 NHTTP_GetResultCode(NHTTPConnectionHandle handle);