HomeSort by relevance Sort by last modified time
    Searched defs:handle (Results 1 - 25 of 358) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/iptables/
ip6tables-standalone.c 44 ip6tc_handle_t handle = NULL; local
57 ret = do_command6(argc, argv, &table, &handle);
59 ret = ip6tc_commit(&handle);
iptables-standalone.c 50 iptc_handle_t handle = NULL; local
63 ret = do_command(argc, argv, &table, &handle);
65 ret = iptc_commit(&handle);
  /hardware/qcom/media/mm-video/vidc/venc/inc/
omx_video_encoder.h 54 class venc_dev *handle; member in class:omx_venc
  /external/apache-http/src/org/apache/http/protocol/
HttpRequestHandler.java 50 void handle(HttpRequest request, HttpResponse response, HttpContext context) method in interface:HttpRequestHandler
  /external/qemu/distrib/sdl-1.2.12/src/loadso/beos/
SDL_sysloadso.c 37 void *handle = NULL; local
42 handle = (void *) (library_id);
44 return (handle);
48 SDL_LoadFunction(void *handle, const char *name)
51 image_id library_id = (image_id) handle;
60 SDL_UnloadObject(void *handle)
63 if (handle != NULL) {
64 library_id = (image_id) handle;
  /external/qemu/distrib/sdl-1.2.12/src/loadso/mint/
SDL_sysloadso.c 38 void *handle = (void *)ldg_open((char *)sofile, ldg_global); local
39 if ( handle == NULL ) {
42 return(handle);
45 void *SDL_LoadFunction(void *handle, const char *name)
48 void *symbol = (void *)ldg_find((char *)name, (LDG *)handle);
55 void SDL_UnloadObject(void *handle)
57 if ( handle != NULL ) {
58 ldg_close((LDG *)handle, ldg_global);
  /external/qemu/distrib/sdl-1.2.12/src/thread/
SDL_thread_c.h 55 SYS_ThreadHandle handle; member in struct:SDL_Thread
  /libcore/luni/src/main/java/javax/security/auth/callback/
CallbackHandler.java 23 * Needs to be implemented by classes that want to handle authentication
24 * {@link Callback}s. A single method {@link #handle(Callback[])} must be
36 * Callback}s it actually wants to handle and in which way. For example, a
40 * values. If a {@code CallbackHandler} is not able to handle a specific
49 * if the {@code CallbackHandler} is not able to handle a
52 void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException; method in interface:CallbackHandler
  /development/simulator/wrapsim/
DevAudio.c 22 snd_pcm_t *handle; member in struct:AudioState
33 audioState->handle = NULL;
35 snd_pcm_open(&audioState->handle, "default", SND_PCM_STREAM_PLAYBACK, 0);
37 if (audioState->handle) {
40 snd_pcm_hw_params_any(audioState->handle, params);
41 snd_pcm_hw_params_set_access(audioState->handle, params, SND_PCM_ACCESS_RW_INTERLEAVED);
42 snd_pcm_hw_params_set_format(audioState->handle, params, SND_PCM_FORMAT_S16_LE);
44 snd_pcm_hw_params_set_rate_near(audioState->handle, params, &rate, NULL);
45 snd_pcm_hw_params_set_channels(audioState->handle, params, 2);
46 snd_pcm_hw_params(audioState->handle, params)
    [all...]
  /external/bluetooth/bluez/plugins/
netlink.c 42 static struct nl_handle *handle; variable in typeref:struct:nl_handle
58 err = nl_recvmsgs_default(handle);
79 handle = nl_handle_alloc();
80 if (!handle) {
81 error("Failed to allocate netlink handle");
85 if (genl_connect(handle) < 0) {
87 nl_handle_destroy(handle);
91 cache = genl_ctrl_alloc_cache(handle);
94 nl_handle_destroy(handle);
102 nl_handle_destroy(handle);
    [all...]
  /external/bluetooth/bluez/test/
simple-service 115 handle = service.AddRecord(xml) variable
117 print "Service record with handle 0x%04x added" % (handle)
127 service.RemoveRecord(dbus.UInt32(handle))
  /external/chromium/base/
multiprocess_test.h 59 // Returns the handle to the child, or NULL on failure
99 base::ProcessHandle handle = static_cast<base::ProcessHandle>(NULL); local
101 false, true, &handle); local
102 return handle;
112 base::ProcessHandle handle = base::kNullProcessHandle; local
114 fds_to_map, false, &handle);
115 return handle;
sync_socket.h 23 typedef HANDLE Handle;
25 typedef int Handle;
28 // Creates a SyncSocket from a Handle. Used in transport.
29 explicit SyncSocket(Handle handle) : handle_(handle) { }
41 // Note it is not safe to send messages from the same socket handle by
60 // Extracts the contained handle. Used for transferring between
62 Handle handle() const { return handle_; function in class:base::SyncSocket
    [all...]
  /external/iproute2/tc/
f_basic.c 38 static int basic_parse_opt(struct filter_util *qu, char *handle,
48 if (handle) {
49 h = strtol(handle, NULL, 0);
51 fprintf(stderr, "Illegal handle \"%s\", must be numeric.\n",
52 handle);
72 unsigned handle; local
74 if (get_tc_classid(&handle, *argv)) {
78 addattr_l(n, MAX_MSG, TCA_BASIC_CLASSID, &handle, 4);
110 struct rtattr *opt, __u32 handle)
119 if (handle)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/loadso/dlopen/
SDL_sysloadso.c 36 void *handle = dlopen(sofile, RTLD_NOW); local
38 if ( handle == NULL ) {
41 return(handle);
44 void *SDL_LoadFunction(void *handle, const char *name)
46 void *symbol = dlsym(handle, name);
53 symbol = dlsym(handle, _name);
62 void SDL_UnloadObject(void *handle)
64 if ( handle != NULL ) {
65 dlclose(handle);
  /external/qemu/distrib/sdl-1.2.12/src/loadso/os2/
SDL_sysloadso.c 38 HMODULE handle = NULL; local
40 APIRET ulrc = DosLoadModule(buf, sizeof (buf), (char *) sofile, &handle);
43 if ((ulrc != NO_ERROR) || (handle == NULL))
46 return((void *) handle);
49 void *SDL_LoadFunction(void *handle, const char *name)
53 APIRET ulrc = DosQueryProcAddr((HMODULE)handle, 0, (char *)name, &symbol);
55 loaderror = "Invalid module handle";
65 void SDL_UnloadObject(void *handle)
67 if ( handle != NULL )
68 DosFreeModule((HMODULE) handle);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/epoc/
SDL_sysmutex.cpp 42 TInt handle; member in struct:SDL_mutex
63 mutex->handle = rmutex.Handle();
73 rmutex.SetHandle(mutex->handle);
89 rmutex.SetHandle(mutex->handle);
102 rmutex.SetHandle(mutex->handle);
  /hardware/msm7k/librpc/
ops.c 16 int handle = open(router, O_RDWR, 0); local
18 if(handle < 0)
20 return handle;
23 void r_close(int handle)
25 if(close(handle) < 0) E("error: %s\n", strerror(errno));
28 int r_read(int handle, char *buf, uint32 size)
30 int rc = read((int) handle, (void *)buf, size);
46 int r_write (int handle, const char *buf, uint32 size)
48 int rc = write(handle, (void *)buf, size);
64 int r_control(int handle, const uint32 cmd, void *arg
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
UserDataMonitor.java 36 * Implementation of UserDataHandler.handle. Creates a UserDataNotification
50 public void handle( method in class:UserDataMonitor
  /libcore/luni/src/main/java/org/w3c/dom/
UserDataHandler.java 66 public void handle(short operation, method in interface:UserDataHandler
  /libcore/sqlite-jdbc/src/main/java/SQLite/
FunctionContext.java 12 * Internal handle for the native SQLite API.
15 private long handle = 0; field in class:FunctionContext
Vm.java 10 * Internal handle for the compiled SQLite VM.
13 private long handle = 0; field in class:Vm
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
tmpCallbackHandler.java 37 public void handle(Callback[] callback) throws IOException, method in class:tmpCallbackHandler
  /system/extras/tests/bionic/libc/other/
test_timer_create.c 36 handle(sigval_t v) function
57 se.sigev_notify_function = handle;
test_timer_create3.c 43 handle(sigval_t v) function
73 se.sigev_notify_function = handle;

Completed in 871 milliseconds

1 2 3 4 5 6 7 8 91011>>