HomeSort by relevance Sort by last modified time
    Searched refs:handle (Results 226 - 250 of 3441) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libxml2/
xmlmodule.c 24 void *handle; member in struct:_xmlModule
28 static int xmlModulePlatformClose(void *handle);
29 static int xmlModulePlatformSymbol(void *handle, const char *name, void **result);
41 * Handle an out of memory condition
66 * Returns a handle for the module or NULL in case of error
81 module->handle = xmlModulePlatformOpen(name);
83 if (module->handle == NULL) {
117 rc = xmlModulePlatformSymbol(module->handle, name, symbol);
133 * @module: the module handle
153 rc = xmlModulePlatformClose(module->handle);
402 void *handle; local
    [all...]
  /external/libsepol/src/
boolean_record.c 21 int sepol_bool_key_create(sepol_handle_t * handle,
29 ERR(handle, "out of memory, " "could not create boolean key");
49 int sepol_bool_key_extract(sepol_handle_t * handle,
54 if (sepol_bool_key_create(handle, boolean->name, key_ptr) < 0) {
55 ERR(handle, "could not extract key from boolean %s",
91 int sepol_bool_set_name(sepol_handle_t * handle,
97 ERR(handle, "out of memory, could not set boolean name");
125 int sepol_bool_create(sepol_handle_t * handle, sepol_bool_t ** bool_ptr)
131 ERR(handle, "out of memory, "
146 int sepol_bool_clone(sepol_handle_t * handle,
    [all...]
context_record.c 33 int sepol_context_set_user(sepol_handle_t * handle,
39 ERR(handle, "out of memory, could not set "
60 int sepol_context_set_role(sepol_handle_t * handle,
66 ERR(handle, "out of memory, could not set "
86 int sepol_context_set_type(sepol_handle_t * handle,
92 ERR(handle, "out of memory, could not set "
112 int sepol_context_set_mls(sepol_handle_t * handle,
118 ERR(handle, "out of memory, could not set "
130 int sepol_context_create(sepol_handle_t * handle, sepol_context_t ** con_ptr)
137 ERR(handle, "out of memory, could not " "create context\n")
    [all...]
context.c 11 #include "handle.h"
87 int context_to_string(sepol_handle_t * handle,
135 ERR(handle, "out of memory, could not convert " "context to string");
143 int context_from_record(sepol_handle_t * handle,
162 ERR(handle, "out of memory");
171 ERR(handle, "user %s is not defined", user);
180 ERR(handle, "role %s is not defined", role);
189 ERR(handle, "type %s is not defined", type);
196 ERR(handle, "MLS is disabled, but MLS context \"%s\" found",
200 ERR(handle, "MLS is enabled, but no MLS context found")
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/loadso/win32/
SDL_sysloadso.c 36 void *handle = NULL; local
46 handle = (void *)LoadLibrary(sofile_t);
49 if ( handle == NULL ) {
65 handle = (void *)LoadLibrary(sofile);
68 if ( handle == NULL ) {
78 if ( handle == NULL ) {
81 return(handle);
84 void *SDL_LoadFunction(void *handle, const char *name)
98 symbol = (void *)GetProcAddress((HMODULE)handle, name_t);
115 symbol = (void *)GetProcAddress((HMODULE)handle, name)
    [all...]
  /hardware/samsung_slsi/exynos5/libion_exynos/
libion.cpp 30 ion_handle handle; member in struct:ion_allocation_data
34 ion_handle handle; member in struct:ion_fd_data
39 ion_handle handle; member in struct:ion_handle_data
94 arg_share.handle = arg_alloc.handle;
97 arg_free.handle = arg_alloc.handle;
131 int ion_incRef(int fd, int share_fd, unsigned long **handle)
140 *handle = (unsigned long*)(data.handle);
    [all...]
  /external/chromium/net/socket/
socks_client_socket_pool_unittest.cc 103 ClientSocketHandle handle; local
104 int rv = handle.Init("a", ignored_socket_params_, LOW, NULL, &pool_,
107 EXPECT_TRUE(handle.is_initialized());
108 EXPECT_TRUE(handle.socket());
116 ClientSocketHandle handle; local
117 int rv = handle.Init("a", ignored_socket_params_, LOW, &callback, &pool_,
120 EXPECT_FALSE(handle.is_initialized());
121 EXPECT_FALSE(handle.socket());
124 EXPECT_TRUE(handle.is_initialized());
125 EXPECT_TRUE(handle.socket())
133 ClientSocketHandle handle; local
147 ClientSocketHandle handle; local
168 ClientSocketHandle handle; local
188 ClientSocketHandle handle; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
SpeechRecognitionClientProxy.cpp 78 void SpeechRecognitionClientProxy::didStartAudio(const WebSpeechRecognitionHandle& handle)
80 RefPtr<SpeechRecognition> recognition = PassRefPtr<SpeechRecognition>(handle);
84 void SpeechRecognitionClientProxy::didStartSound(const WebSpeechRecognitionHandle& handle)
86 RefPtr<SpeechRecognition> recognition = PassRefPtr<SpeechRecognition>(handle);
91 void SpeechRecognitionClientProxy::didEndSound(const WebSpeechRecognitionHandle& handle)
93 RefPtr<SpeechRecognition> recognition = PassRefPtr<SpeechRecognition>(handle);
98 void SpeechRecognitionClientProxy::didEndAudio(const WebSpeechRecognitionHandle& handle)
100 RefPtr<SpeechRecognition> recognition = PassRefPtr<SpeechRecognition>(handle);
104 void SpeechRecognitionClientProxy::didReceiveResults(const WebSpeechRecognitionHandle& handle, const WebVector<WebSpeechRecognitionResult>& newFinalResults, const WebVector<WebSpeechRecognitionResult>& currentInterimResults)
106 RefPtr<SpeechRecognition> recognition = PassRefPtr<SpeechRecognition>(handle);
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_Debug.h 48 #define OMX_LOG_PRINT(HANDLE, STR, ARG...) \
49 (OMX_Log(HANDLE, __FILE__, __LINE__, __FUNCTION__, STR, ##ARG))
52 #define OMX_DPRINT(HANDLE, STR, ARG...) OMX_LOG_PRINT(OMX_MASK_DEBUG | HANDLE, STR, ##ARG)
53 #define OMX_TPRINT(HANDLE, STR, ARG...) OMX_LOG_PRINT(OMX_MASK_TRACE | HANDLE, STR, ##ARG)
55 #define OMX_DPRINT(HANDLE, STR, ARG...)
56 #define OMX_TPRINT(HANDLE, STR, ARG...)
60 #define OMX_DENTER(handle) OMX_TPRINT((handle), "+++ENTERING"
    [all...]
  /hardware/ti/omap4xxx/domx/omx_core/inc/
OMX_Debug.h 73 #define OMX_LOG_PRINT(HANDLE, STR, ARG...) \
74 (OMX_Log(HANDLE, __FILE__, __LINE__, __FUNCTION__, STR, ##ARG))
77 #define OMX_DPRINT(HANDLE, STR, ARG...) OMX_LOG_PRINT(OMX_MASK_DEBUG | HANDLE, STR, ##ARG)
78 #define OMX_TPRINT(HANDLE, STR, ARG...) OMX_LOG_PRINT(OMX_MASK_TRACE | HANDLE, STR, ##ARG)
80 #define OMX_DPRINT(HANDLE, STR, ARG...)
81 #define OMX_TPRINT(HANDLE, STR, ARG...)
85 #define OMX_DENTER(handle) OMX_TPRINT((handle), "+++ENTERING"
    [all...]
  /libcore/luni/src/main/native/
java_util_zip_Deflater.cpp 26 static void Deflater_setDictionaryImpl(JNIEnv* env, jobject, jbyteArray dict, int off, int len, jlong handle) {
27 toNativeZipStream(handle)->setDictionary(env, dict, off, len, false);
30 static jlong Deflater_getTotalInImpl(JNIEnv*, jobject, jlong handle) {
31 return toNativeZipStream(handle)->stream.total_in;
34 static jlong Deflater_getTotalOutImpl(JNIEnv*, jobject, jlong handle) {
35 return toNativeZipStream(handle)->stream.total_out;
38 static jint Deflater_getAdlerImpl(JNIEnv*, jobject, jlong handle) {
39 return toNativeZipStream(handle)->stream.adler;
67 static void Deflater_setInputImpl(JNIEnv* env, jobject, jbyteArray buf, jint off, jint len, jlong handle) {
68 toNativeZipStream(handle)->setInput(env, buf, off, len)
    [all...]
  /external/chromium_org/webkit/glue/
webfileutilities_impl.cc 71 void WebFileUtilitiesImpl::closeFile(base::PlatformFile& handle) {
72 if (handle == base::kInvalidPlatformFileValue)
74 if (base::ClosePlatformFile(handle))
75 handle = base::kInvalidPlatformFileValue;
78 int WebFileUtilitiesImpl::readFromFile(base::PlatformFile handle,
81 if (handle == base::kInvalidPlatformFileValue || !data || length <= 0)
83 return base::ReadPlatformFileCurPosNoBestEffort(handle, data, length);
  /frameworks/native/services/sensorservice/
SensorInterface.cpp 53 status_t HardwareSensor::batch(void* ident, int handle, int flags,
59 status_t HardwareSensor::flush(void* ident, int handle) {
60 return mSensorDevice.flush(ident, handle);
63 status_t HardwareSensor::setDelay(void* ident, int handle, int64_t ns) {
64 return mSensorDevice.setDelay(ident, handle, ns);
67 void HardwareSensor::autoDisable(void *ident, int handle) {
68 mSensorDevice.autoDisable(ident, handle);
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/
TrustletSession.cpp 91 if (buffers.find(pWsm->handle) != buffers.end()) {
95 buffers[pWsm->handle] = pWsm;
100 bool TrustletSession::removeBulkBuff(uint32_t handle)
102 if (buffers.find(handle) == buffers.end()) {
105 CWsm_ptr pWsm = buffers[handle];
107 buffers.erase(handle);
120 buffers.erase(pWsm->handle);
  /external/bluetooth/bluedroid/stack/include/
avdtc_api.h 61 typedef void tAVDTC_CTRL_CBACK(UINT8 handle, BD_ADDR bd_addr, UINT8 event, tAVDTC_CTRL *p_data);
124 AVDT_API extern void AVDTC_GetConfigReq(UINT8 handle);
135 AVDT_API extern void AVDTC_GetConfigRsp(UINT8 handle, UINT8 label, tAVDT_CFG *p_cfg);
146 AVDT_API extern void AVDTC_OpenReq(UINT8 handle);
157 AVDT_API extern void AVDTC_OpenRsp(UINT8 handle, UINT8 label);
179 AVDT_API extern void AVDTC_CloseRsp(UINT8 handle, UINT8 label);
201 AVDT_API extern void AVDTC_AbortReq(UINT8 handle);
212 AVDT_API extern void AVDTC_AbortRsp(UINT8 handle, UINT8 label);
223 AVDT_API extern void AVDTC_Rej(UINT8 handle, BD_ADDR bd_addr, UINT8 cmd, UINT8 label,
  /external/chromium_org/chrome/test/automation/
automation_handle_tracker.cc 12 AutomationHandle handle)
13 : handle_(handle),
38 handle_to_object_.insert(MapEntry(proxy->handle(), proxy));
43 HandleToObjectMap::iterator iter = handle_to_object_.find(proxy->handle());
45 AutomationHandle proxy_handle = proxy->handle();
52 void AutomationHandleTracker::InvalidateHandle(AutomationHandle handle) {
55 HandleToObjectMap::iterator iter = handle_to_object_.find(handle);
64 AutomationHandle handle) {
66 HandleToObjectMap::iterator iter = handle_to_object_.find(handle);
  /external/chromium_org/ui/surface/
transport_dib_posix.cc 23 TransportDIB::TransportDIB(TransportDIB::Handle dib)
44 TransportDIB* TransportDIB::Map(Handle handle) {
45 scoped_ptr<TransportDIB> dib(CreateWithHandle(handle));
52 TransportDIB* TransportDIB::CreateWithHandle(Handle handle) {
53 return new TransportDIB(handle);
57 bool TransportDIB::is_valid_handle(Handle dib) {
79 if (!is_valid_handle(handle()))
90 if ((fstat(shared_memory_.handle().fd, &st) != 0) |
112 TransportDIB::Handle TransportDIB::handle() const { function in class:TransportDIB
    [all...]
  /external/kernel-headers/original/linux/
ion.h 145 * an opaque handle to it.
152 * ion_free - free a handle
154 * @handle: the handle to free
156 * Free the provided handle.
158 void ion_free(struct ion_client *client, struct ion_handle *handle);
161 * ion_phys - returns the physical address and len of a handle
163 * @handle: the handle
167 * This function queries the heap for a particular handle to get th
251 struct ion_handle *handle; member in struct:ion_allocation_data
265 struct ion_handle *handle; member in struct:ion_fd_data
274 struct ion_handle *handle; member in struct:ion_handle_data
    [all...]
  /external/chromium_org/content/browser/indexed_db/leveldb/
avltree.h 150 typedef typename Abstractor::handle handle;
163 inline handle Insert(handle h);
165 inline handle Search(key k, SearchType st = EQUAL);
166 inline handle SearchLeast();
167 inline handle SearchGreatest();
169 inline handle Remove(key k);
171 inline handle Subst(handle new_node)
    [all...]
  /device/samsung/manta/voicefx/
eS305VoiceProcessing.h 57 * Sets the IO handle for the current input stream, or ADNC_IO_HANDLE_NONE when stream is
60 int eS305_SetActiveIoHandle(audio_io_handle_t handle);
62 int eS305_AddEffect(effect_descriptor_t * descr, audio_io_handle_t handle);
64 int eS305_RemoveEffect(effect_descriptor_t * descr, audio_io_handle_t handle);
  /external/chromium/base/
sync_socket.h 26 typedef HANDLE Handle;
28 typedef int Handle;
31 // Creates a SyncSocket from a Handle. Used in transport.
32 explicit SyncSocket(Handle handle) : handle_(handle) { }
44 // Note it is not safe to send messages from the same socket handle by
63 // Extracts the contained handle. Used for transferring between
65 Handle handle() const { return handle_; function in class:base::SyncSocket
    [all...]
  /external/chromium/base/threading/
platform_thread_unittest.cc 31 PlatformThreadHandle handle = kNullThreadHandle; local
34 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
35 PlatformThread::Join(handle);
41 PlatformThreadHandle handle[arraysize(thread)]; local
46 ASSERT_TRUE(PlatformThread::Create(0, &thread[n], &handle[n]));
48 PlatformThread::Join(handle[n]);
79 PlatformThreadHandle handle = kNullThreadHandle; local
82 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
83 PlatformThread::Join(handle);
92 PlatformThreadHandle handle[arraysize(thread)] local
    [all...]
  /external/chromium/chrome/browser/webdata/
web_data_service_test_util.h 20 virtual void OnWebDataServiceRequestDone(WebDataService::Handle handle,
23 handle_ = handle;
31 WebDataService::Handle handle() { return handle_; } function in class:AutofillWebDataServiceConsumer
35 WebDataService::Handle handle_;
  /external/chromium_org/base/threading/
platform_thread_unittest.cc 32 PlatformThreadHandle handle; local
35 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
36 PlatformThread::Join(handle);
42 PlatformThreadHandle handle[arraysize(thread)]; local
47 ASSERT_TRUE(PlatformThread::Create(0, &thread[n], &handle[n]));
49 PlatformThread::Join(handle[n]);
83 PlatformThreadHandle handle; local
86 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
87 PlatformThread::Join(handle);
99 PlatformThreadHandle handle[arraysize(thread)] local
    [all...]
  /external/chromium_org/chrome/browser/common/
cancelable_request.cc 11 CancelableRequestProvider::Handle CancelableRequestProvider::AddRequest(
14 Handle handle; local
18 handle = next_handle_;
25 consumer->OnRequestAdded(this, handle);
27 request->Init(this, handle, consumer);
28 return handle;
31 void CancelableRequestProvider::CancelRequest(Handle handle) {
33 CancelRequestLocked(pending_requests_.find(handle));
    [all...]

Completed in 579 milliseconds

1 2 3 4 5 6 7 8 91011>>