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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wdstpdi.h 49 HANDLE hProvider;
58 HANDLE hProvider,
63 HANDLE hProvider,
70 HANDLE hProvider,
75 HANDLE hProvider,
81 HANDLE hProvider,
88 HANDLE hProvider,
mprapi.h 54 HANDLE hInterface;
69 HANDLE hInterface;
156 HANDLE hInterface;
197 HANDLE hInterface;
264 HANDLE hTransport;
271 HANDLE hIfTransport;
307 HANDLE hPort;
308 HANDLE hConnection;
319 HANDLE hPort;
320 HANDLE hConnection
    [all...]
winwlx.h 119 HANDLE UserToken;
148 WINBOOL WINAPI WlxInitialize(LPWSTR lpWinsta,HANDLE hWlx,PVOID pvReserved,PVOID pWinlogonFunctions,PVOID *pWlxContext);
183 typedef VOID (WINAPI *PWLX_USE_CTRL_ALT_DEL)(HANDLE hWlx);
184 typedef VOID (WINAPI *PWLX_SET_CONTEXT_POINTER)(HANDLE hWlx,PVOID pWlxContext);
185 typedef VOID (WINAPI *PWLX_SAS_NOTIFY)(HANDLE hWlx,DWORD dwSasType);
186 typedef WINBOOL (WINAPI *PWLX_SET_TIMEOUT)(HANDLE hWlx,DWORD Timeout);
187 typedef int (WINAPI *PWLX_ASSIGN_SHELL_PROTECTION)(HANDLE hWlx,HANDLE hToken,HANDLE hProcess,HANDLE hThread)
    [all...]
  /hardware/ti/omap4-aah/ion/
ion_test_2.c 48 int _ion_alloc_test(int fd, struct ion_handle **handle)
54 handle, &stride);
56 ret = ion_alloc(fd, len, align, alloc_flags, handle);
66 struct ion_handle **handle; local
74 handle = (struct ion_handle **)malloc(count * sizeof(struct ion_handle *));
75 if(handle == NULL) {
83 ret = _ion_alloc_test(fd, &(handle[i]));
84 printf("%s(): Alloc handle[%d]=%p\n", __func__, i, handle[i]);
85 if(ret || ((int)handle[i] == -ENOMEM))
154 struct ion_handle **handle; local
262 struct ion_handle **handle; local
    [all...]
ion.c 58 unsigned int flags, struct ion_handle **handle)
70 *handle = data.handle;
75 struct ion_handle **handle, size_t *stride)
96 *handle = alloc_data.handle;
100 int ion_free(int fd, struct ion_handle *handle)
103 .handle = handle,
108 int ion_map(int fd, struct ion_handle *handle, size_t length, int prot
    [all...]
  /external/selinux/libsemanage/src/
debug.h 29 #include "handle.h"
50 #define ERR(handle, ...) \
51 msg_write(handle, SEMANAGE_MSG_ERR, "libsemanage", \
54 #define INFO(handle, ...) \
55 msg_write(handle, SEMANAGE_MSG_INFO, "libsemanage", \
58 #define WARN(handle, ...) \
59 msg_write(handle, SEMANAGE_MSG_WARN, "libsemanage", \
66 semanage_handle_t * handle,
73 sepol_handle_t * handle,
fcontext_internal.h 9 #include "handle.h"
32 extern int fcontext_file_dbase_init(semanage_handle_t * handle,
39 extern int hidden semanage_fcontext_validate_local(semanage_handle_t * handle,
iface_internal.h 8 #include "handle.h"
28 extern int iface_policydb_dbase_init(semanage_handle_t * handle,
33 extern int iface_file_dbase_init(semanage_handle_t * handle,
seuser_internal.h 9 #include "handle.h"
32 extern int seuser_file_dbase_init(semanage_handle_t * handle,
39 extern int hidden semanage_seuser_validate_local(semanage_handle_t * handle,
  /external/selinux/libsepol/src/
nodes.c 7 #include "handle.h"
14 static int node_from_record(sepol_handle_t * handle,
30 if (sepol_node_get_addr_bytes(handle, data, &addr_buf, &addr_bsize) < 0)
32 if (sepol_node_get_mask_bytes(handle, data, &mask_buf, &mask_bsize) < 0)
47 ERR(handle, "unsupported protocol %u", proto);
56 if (context_from_record(handle, policydb, &tmp_con,
68 ERR(handle, "out of memory");
79 ERR(handle, "could not create node structure");
83 static int node_to_record(sepol_handle_t * handle,
93 if (sepol_node_create(handle, &tmp_record) < 0
    [all...]
users.c 7 #include "handle.h"
15 static int user_to_record(sepol_handle_t * handle,
28 if (sepol_user_create(handle, &tmp_record) < 0)
31 if (sepol_user_set_name(handle, tmp_record, name) < 0)
38 if (sepol_user_add_role(handle, tmp_record, role) < 0)
51 ERR(handle, "could not copy MLS level");
57 ERR(handle, "could not copy MLS level");
61 if (mls_to_string(handle, policydb, &context, &str) < 0) {
67 if (sepol_user_set_mlslevel(handle, tmp_record, str) < 0) {
75 ERR(handle, "could not copy MLS range")
    [all...]
interfaces.c 5 #include "handle.h"
12 static int iface_from_record(sepol_handle_t * handle,
30 if (context_from_record(handle, policydb,
39 if (context_from_record(handle, policydb,
51 ERR(handle, "out of memory");
62 ERR(handle, "error creating interface structure");
66 static int iface_to_record(sepol_handle_t * handle,
78 if (sepol_iface_create(handle, &tmp_record) < 0)
81 if (sepol_iface_set_name(handle, tmp_record, name) < 0)
84 if (context_to_record(handle, policydb, ifcon, &tmp_con) < 0
    [all...]
  /external/v8/src/
execution.h 28 Handle<Object> callable,
29 Handle<Object> receiver,
31 Handle<Object> argv[],
41 MUST_USE_RESULT static MaybeHandle<Object> New(Handle<JSFunction> func,
43 Handle<Object> argv[]);
51 static MaybeHandle<Object> TryCall(Handle<JSFunction> func,
52 Handle<Object> receiver, int argc,
53 Handle<Object> argv[],
58 Isolate* isolate, Handle<Object> obj);
62 Isolate* isolate, Handle<Object> obj)
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/ips/common/
GrallocBufferBase.cpp 24 GrallocBufferBase::GrallocBufferBase(buffer_handle_t handle)
25 : GraphicBuffer(handle)
27 ATRACE("handle = %#x", handle);
28 initBuffer(handle);
31 void GrallocBufferBase::resetBuffer(buffer_handle_t handle)
33 GraphicBuffer::resetBuffer(handle);
34 initBuffer(handle);
37 void GrallocBufferBase::initBuffer(buffer_handle_t handle)
  /system/bt/btif/co/
bta_pan_co.c 75 void bta_pan_co_open(UINT16 handle, UINT8 app_id, tBTA_PAN_ROLE local_role,
79 "handle:%d", app_id, local_role, peer_role, handle);
82 conn = btpan_new_conn(handle, peer_addr, local_role, peer_role);
86 "conn->handle:%d should = handle:%d, local_role:%d, remote_role:%d",
87 btpan_cb.tap_fd, btpan_cb.open_count, conn->handle, handle,
92 conn->handle = handle;
    [all...]
  /external/libnl/tests/
test-socket-creation.c 9 printf("Created handle with port 0x%x\n",
13 printf("Created handle with port 0x%x\n",
22 printf("Created handle with port 0x%x\n",
  /frameworks/native/cmds/servicemanager/
bctest.c 13 uint32_t handle; local
25 handle = bio_get_ref(&reply);
27 if (handle)
28 binder_acquire(bs, handle);
32 return handle;
64 uint32_t handle; local
76 handle = svcmgr_lookup(bs, svcmgr, "alt_svc_mgr");
77 if (!handle) {
81 svcmgr = handle;
82 fprintf(stderr,"svcmgr is via %x\n", handle);
    [all...]
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
common.cpp 22 interface_info *getIfaceInfo(wifi_interface_handle handle)
24 return (interface_info *)handle;
27 wifi_handle getWifiHandle(wifi_interface_handle handle)
29 return getIfaceInfo(handle)->handle;
32 hal_info *getHalInfo(wifi_handle handle)
34 return (hal_info *)handle;
37 hal_info *getHalInfo(wifi_interface_handle handle)
39 return getHalInfo(getWifiHandle(handle));
52 wifi_error wifi_register_handler(wifi_handle handle, int cmd, nl_recvmsg_msg_cb_t func, void *arg
226 wifi_handle handle = getWifiHandle(iface); local
    [all...]
  /system/bt/stack/include/
port_api.h 205 ** p_handle - OUT pointer to the handle.
231 ** Parameters: handle - Handle of the port returned in the Open
234 extern int RFCOMM_RemoveConnection (UINT16 handle);
243 ** Parameters: handle - Handle returned in the RFCOMM_CreateConnection
246 extern int RFCOMM_RemoveServer (UINT16 handle);
255 ** Parameters: handle - Handle of the port returned in the Open
268 ** Description This function is called to clear the keep handle fla
    [all...]
  /external/webrtc/src/modules/audio_processing/
echo_cancellation_impl.cc 24 typedef void Handle;
88 Handle* my_handle = static_cast<Handle*>(handle(handle_index));
128 Handle* my_handle = handle(handle_index);
254 Handle* my_handle = static_cast<Handle*>(handle(0));
297 // TODO(bjornv): How should we handle the multi-channel case
341 Handle* handle = NULL; local
    [all...]
  /system/bt/bta/ag/
bta_ag_rfc.c 88 static void bta_ag_port_cback(UINT32 code, UINT16 port_handle, UINT16 handle)
94 if ((p_scb = bta_ag_scb_by_idx(handle)) != NULL)
96 /* ignore port events for port handles other than connected handle */
99 APPL_TRACE_DEBUG("ag_port_cback ignoring handle:%d conn_handle = %d other handle = %d",
100 port_handle, p_scb->conn_handle, handle);
107 p_buf->layer_specific = handle;
123 static void bta_ag_mgmt_cback(UINT32 code, UINT16 port_handle, UINT16 handle)
131 APPL_TRACE_DEBUG("ag_mgmt_cback : code = %d, port_handle = %d, handle = %d",
132 code, port_handle, handle);
    [all...]
  /external/doclava/res/assets/templates/
diff.cs 32 .handle { property
37 .handle-opened {
41 .handle-closed {
69 $(tr).children(".handle").addClass("handle-opened");
70 $(tr).children(".handle").removeClass("handle-closed");
77 $(tr).children(".handle").removeClass("handle-opened");
78 $(tr).children(".handle").addClass("handle-closed")
    [all...]
  /external/iproute2/include/libiptc/
libiptc.h 28 /* Transparent handle type. */
32 int iptc_is_chain(const char *chain, const iptc_handle_t handle);
41 const char *iptc_first_chain(iptc_handle_t *handle);
42 const char *iptc_next_chain(iptc_handle_t *handle);
46 iptc_handle_t *handle);
50 iptc_handle_t *handle);
54 iptc_handle_t *handle);
57 int iptc_builtin(const char *chain, const iptc_handle_t handle);
62 iptc_handle_t *handle);
72 iptc_handle_t *handle);
    [all...]
  /external/iptables/include/libiptc/
libip6tc.h 24 int ip6tc_is_chain(const char *chain, struct xtc_handle *const handle);
33 const char *ip6tc_first_chain(struct xtc_handle *handle);
34 const char *ip6tc_next_chain(struct xtc_handle *handle);
38 struct xtc_handle *handle);
42 struct xtc_handle *handle);
46 struct xtc_handle *handle);
49 int ip6tc_builtin(const char *chain, struct xtc_handle *const handle);
54 struct xtc_handle *handle);
64 struct xtc_handle *handle);
70 struct xtc_handle *handle);
    [all...]
libiptc.h 28 int iptc_is_chain(const char *chain, struct xtc_handle *const handle);
37 const char *iptc_first_chain(struct xtc_handle *handle);
38 const char *iptc_next_chain(struct xtc_handle *handle);
42 struct xtc_handle *handle);
46 struct xtc_handle *handle);
50 struct xtc_handle *handle);
53 int iptc_builtin(const char *chain, struct xtc_handle *const handle);
58 struct xtc_handle *handle);
68 struct xtc_handle *handle);
74 struct xtc_handle *handle);
    [all...]

Completed in 388 milliseconds

1 2 3 4 5 6 7 8 91011>>