HomeSort by relevance Sort by last modified time
    Searched refs:handle (Results 176 - 200 of 3550) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_handle_table.c 30 * Generic handle table implementation.
51 /** Number of objects the handle can currently hold */
156 unsigned handle; local
163 /* linear search for an empty handle */
171 handle = index + 1;
174 if(!handle)
185 return handle;
191 unsigned handle,
197 assert(handle);
198 if(!handle || !ht
    [all...]
  /external/libsepol/src/
iface_record.c 27 int sepol_iface_key_create(sepol_handle_t * handle,
35 ERR(handle, "out of memory, could not create interface key");
55 int sepol_iface_key_extract(sepol_handle_t * handle,
60 if (sepol_iface_key_create(handle, iface->name, key_ptr) < 0) {
61 ERR(handle, "could not extract key from "
89 int sepol_iface_create(sepol_handle_t * handle, sepol_iface_t ** iface)
96 ERR(handle, "out of memory, could not create "
120 int sepol_iface_set_name(sepol_handle_t * handle,
126 ERR(handle, "out of memory, " "could not set interface name");
145 int sepol_iface_set_ifcon(sepol_handle_t * handle,
    [all...]
handle.h 4 #include <sepol/handle.h>
15 sepol_handle_t * handle, const char *fmt, ...);
  /external/mesa3d/src/gallium/auxiliary/util/
u_handle_table.c 30 * Generic handle table implementation.
51 /** Number of objects the handle can currently hold */
156 unsigned handle; local
163 /* linear search for an empty handle */
171 handle = index + 1;
174 if(!handle)
185 return handle;
191 unsigned handle,
197 assert(handle);
198 if(!handle || !ht
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glapi_gentable.c 107 _glapi_create_table_from_handle(void *handle, const char *symbol_prefix) {
121 *procp = dlsym(handle, symboln);
128 *procp = dlsym(handle, symboln);
135 *procp = dlsym(handle, symboln);
142 *procp = dlsym(handle, symboln);
149 *procp = dlsym(handle, symboln);
156 *procp = dlsym(handle, symboln);
163 *procp = dlsym(handle, symboln);
170 *procp = dlsym(handle, symboln);
177 *procp = dlsym(handle, symboln)
    [all...]
  /development/ndk/platforms/android-3/include/
dlfcn.h 36 extern int dlclose(void* handle);
38 extern void* dlsym(void* handle, const char* symbol);
  /external/chromium_org/chrome/browser/printing/cloud_print/test/
cloud_print_policy_browsertest.cc 48 base::ProcessHandle handle; local
50 base::LaunchProcess(new_command_line, base::LaunchOptions(), &handle);
57 base::WaitForExitCodeWithTimeout(handle, &exit_code,
62 base::CloseProcessHandle(handle);
77 base::ProcessHandle handle; local
79 base::LaunchProcess(new_command_line, base::LaunchOptions(), &handle);
84 base::WaitForExitCodeWithTimeout(handle, &exit_code,
89 base::CloseProcessHandle(handle);
  /external/chromium_org/content/browser/android/
child_process_launcher_android.h 21 // The created process handle is returned to the |callback| on success, 0 is
28 // Stops a child process based on the handle returned form
30 void StopChildProcess(base::ProcessHandle handle);
32 bool IsChildProcessOomProtected(base::ProcessHandle handle);
  /external/chromium_org/content/common/
socket_stream_handle_data.h 25 // to |handle|.
27 blink::WebSocketStreamHandle* handle, int render_view_id);
30 // |handle| must actually be a WebSocketStreamHandleImpl object.
32 blink::WebSocketStreamHandle* handle);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
CursorController.java 25 * Called when the handle is about to start updating its position.
26 * @param handle
28 void beforeStartUpdatingPosition(HandleView handle);
33 void updatePosition(HandleView handle, int x, int y);
  /external/chromium_org/content/public/browser/
child_process_data.h 28 // The handle to the process.
29 base::ProcessHandle handle; member in struct:content::ChildProcessData
32 : process_type(process_type), id(0), handle(base::kNullProcessHandle) {
  /external/chromium_org/mojo/common/
handle_watcher.cc 28 const char kWatcherThreadName[] = "handle-watcher-thread";
46 Handle handle; member in struct:mojo::common::__anon8731::WatchData
67 typedef std::map<Handle, WatchData> HandleToWatchDataMap;
69 // Invoked when a handle needs to be removed and notified.
70 void RemoveAndNotify(const Handle& handle, MojoResult result);
73 // and sets |handle| to the Handle. Returns false if not a known id.
74 bool GetMojoHandleByWatcherID(WatcherID watcher_id, Handle* handle) const
106 Handle handle; local
    [all...]
  /external/chromium_org/mojo/system/
platform_channel_handle.cc 29 DPCHECK(CloseHandle(handle));
30 handle = INVALID_HANDLE_VALUE;
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
fake_core_interface.h 16 virtual void AddRefResource(PP_Resource handle);
17 virtual void ReleaseResource(PP_Resource handle);
  /external/chromium_org/sync/notifier/
ack_handler.h 29 // Record the local acknowledgement of an invalidation identified by |handle|.
32 const AckHandle& handle) = 0;
34 // Record the drop of an invalidation identified by |handle|.
37 const AckHandle& handle) = 0;
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebCryptoKey.cpp 42 WebCryptoKeyPrivate(PassOwnPtr<WebCryptoKeyHandle> handle, WebCryptoKeyType type, bool extractable, const WebCryptoAlgorithm& algorithm, WebCryptoKeyUsageMask usages)
43 : handle(handle)
52 const OwnPtr<WebCryptoKeyHandle> handle; member in class:blink::WebCryptoKeyPrivate
59 WebCryptoKey WebCryptoKey::create(WebCryptoKeyHandle* handle, WebCryptoKeyType type, bool extractable, const WebCryptoAlgorithm& algorithm, WebCryptoKeyUsageMask usages)
62 key.m_private = adoptRef(new WebCryptoKeyPrivate(adoptPtr(handle), type, extractable, algorithm, usages));
71 WebCryptoKeyHandle* WebCryptoKey::handle() const function in class:blink::WebCryptoKey
74 return m_private->handle.get();
  /external/chromium_org/third_party/angle/src/libGLESv2/
ResourceManager.cpp 71 GLuint handle = mBufferHandleAllocator.allocate(); local
73 mBufferMap[handle] = NULL;
75 return handle;
81 GLuint handle = mProgramShaderHandleAllocator.allocate(); local
85 mShaderMap[handle] = new VertexShader(this, mRenderer, handle);
89 mShaderMap[handle] = new FragmentShader(this, mRenderer, handle);
93 return handle;
99 GLuint handle = mProgramShaderHandleAllocator.allocate() local
109 GLuint handle = mTextureHandleAllocator.allocate(); local
119 GLuint handle = mRenderbufferHandleAllocator.allocate(); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32window_unittest.cc 60 EXPECT_TRUE(wnd.handle() == NULL);
63 EXPECT_TRUE(wnd.handle() != NULL);
64 EXPECT_EQ(kDummyResult, ::SendMessage(wnd.handle(), WM_USER, 1, 2));
69 EXPECT_TRUE(wnd.handle() == NULL);
77 EXPECT_TRUE(wnd1.handle() != NULL);
78 EXPECT_TRUE(wnd2.handle() != NULL);
81 EXPECT_TRUE(wnd2.handle() == NULL);
82 EXPECT_TRUE(wnd1.handle() == NULL);
  /external/chromium_org/ui/base/win/
touch_input.cc 9 UI_EXPORT BOOL GetTouchInputInfoWrapper(HTOUCHINPUT handle,
19 return get_touch_input_info_func(handle, count, pointer, size);
  /external/libsepol/include/sepol/
iface_record.h 4 #include <sepol/handle.h>
22 extern int sepol_iface_key_create(sepol_handle_t * handle,
26 extern int sepol_iface_key_extract(sepol_handle_t * handle,
35 extern int sepol_iface_set_name(sepol_handle_t * handle,
41 extern int sepol_iface_set_ifcon(sepol_handle_t * handle,
46 extern int sepol_iface_set_msgcon(sepol_handle_t * handle,
50 extern int sepol_iface_create(sepol_handle_t * handle,
53 extern int sepol_iface_clone(sepol_handle_t * handle,
  /external/libsepol/include/sepol/policydb/
link.h 9 #include <sepol/handle.h>
16 extern int link_modules(sepol_handle_t * handle,
  /external/qemu/distrib/sdl-1.2.15/src/loadso/macos/
SDL_sysloadso.c 40 void *handle = NULL; local
70 handle = (void *)(library_id);
74 return(handle);
77 void *SDL_LoadFunction(void *handle, const char *name)
82 CFragConnectionID library_id = (CFragConnectionID)handle;
97 void SDL_UnloadObject(void *handle)
100 if ( handle != NULL ) {
101 library_id = (CFragConnectionID)handle;
  /frameworks/base/opengl/java/android/opengl/
EGLConfig.java 25 private EGLConfig(int handle) {
26 super(handle);
EGLContext.java 25 private EGLContext(int handle) {
26 super(handle);
EGLDisplay.java 25 private EGLDisplay(int handle) {
26 super(handle);

Completed in 1478 milliseconds

1 2 3 4 5 6 78 91011>>