Home
last modified time | relevance | path

Searched refs:typelen (Results 1 – 6 of 6) sorted by relevance

/external/kmod/tools/
Dmodinfo.c46 int typelen; member
49 …ame, int namelen, const char *param, int paramlen, const char *type, int typelen, struct param **l… in add_param() argument
70 it->typelen = 0; in add_param()
80 it->typelen = typelen; in add_param()
89 int namelen, paramlen, typelen; in process_parm() local
104 typelen = 0; in process_parm()
109 typelen = strlen(type); in process_parm()
112 it = add_param(name, namelen, param, paramlen, type, typelen, params); in process_parm()
144 p->namelen, p->name, p->typelen, p->type, in modinfo_params_do()
150 p->typelen, p->type, in modinfo_params_do()
[all …]
/external/openssh/openbsd-compat/
Dxcrypt.c77 size_t typelen; in pick_salt() local
88 typelen = p - passwd + 1; in pick_salt()
89 strlcpy(salt, passwd, MIN(typelen, sizeof(salt))); in pick_salt()
/external/llvm-project/openmp/runtime/src/thirdparty/ittnotify/legacy/
Dittnotify.h457 int LIBITTAPI __itt_notify_sync_nameA(void *addr, const char *objtype, int typelen, const char …
458 int LIBITTAPI __itt_notify_sync_nameW(void *addr, const wchar_t *objtype, int typelen, const wchar_…
465 int LIBITTAPI __itt_notify_sync_name(void *addr, const char *objtype, int typelen, const char *objn…
472 ITT_STUB(LIBITTAPI, int, notify_sync_nameA, (void *addr, const char *objtype, int typelen, const…
473 ITT_STUB(LIBITTAPI, int, notify_sync_nameW, (void *addr, const wchar_t *objtype, int typelen, const…
475 ITT_STUB(LIBITTAPI, int, notify_sync_name, (void *addr, const char *objtype, int typelen, const…
488 #define __itt_notify_sync_nameA(addr, objtype, typelen, objname, namelen, attribute)
490 #define __itt_notify_sync_nameW(addr, objtype, typelen, objname, namelen, attribute)
493 #define __itt_notify_sync_name(addr, objtype, typelen, objname, namelen, attribute)
/external/selinux/libselinux/src/
Dquery_user_context.c112 int typelen = 100; in manual_user_enter_context() local
149 get_field("type", type, typelen); in manual_user_enter_context()
/external/llvm-project/openmp/runtime/src/thirdparty/ittnotify/
Dittnotify_static.h223 …, const char *objtype, int typelen, const char *objname, int namelen, int attribute), (ITT_F…
224 …, const wchar_t *objtype, int typelen, const wchar_t *objname, int namelen, int attribute), (ITT_F…
226 …, const char *objtype, int typelen, const char *objname, int namelen, int attribute), (ITT_F…
/external/libcups/scheduler/
Dtype.c86 size_t typelen; /* Length of type name */ in mimeAddType() local
125 typelen = strlen(type) + 1; in mimeAddType()
127 if ((temp = calloc(1, sizeof(mime_type_t) - MIME_MAX_TYPE + typelen)) == NULL) in mimeAddType()
134 memcpy(temp->type, type, typelen); in mimeAddType()