search for: l458

Displaying 6 results from an estimated 6 matches for "l458".

Did you mean: 458
2020 May 18
2
Understanding LLD's SymbolTable's use of CachedHashStringRef
...f821d2c7a679a145ee983f9/llvm/include/llvm/ADT/CachedHashString.h#L35-L36 [2] https://github.com/llvm/llvm-project/blob/3f5f8f39734e88c797b003d4a0002b2eaef1ac17/lld/COFF/SymbolTable.h#L129 [3] https://github.com/llvm/llvm-project/blob/3f5f8f39734e88c797b003d4a0002b2eaef1ac17/lld/COFF/SymbolTable.cpp#L458 [4] https://github.com/llvm/llvm-project/blob/3f5f8f39734e88c797b003d4a0002b2eaef1ac17/lld/COFF/SymbolTable.cpp#L727
2013 Oct 14
2
Re: event handler
Michal Privoznik писал 2013-10-14 11:39: > On 14.10.2013 10:33, Alexandr wrote: >> Michal Privoznik писал 2013-10-14 08:48: >>> On 14.10.2013 02:42, Alexandr wrote: >>>> good day to all. >>>> i still have not solved my problem with event handling. >>>> currently i have following code >>>> >>>> >>>> void
2013 Oct 14
0
Re: event handler
...main structure. virsh is guaranteed to work and use the correct sequence of APIs. The other option is to look at examples, e.g. event-test [2]. Michal 2: http://libvirt.org/git/?p=libvirt.git;a=blob;f=examples/domain-events/events-c/event-test.c;h=52aa3d08d7326e422c12a8521717c3d55b2d8afd;hb=HEAD#l458
2020 Oct 12
2
Lookup sid with libsmbclient (invoked from c# on mono)
...m/devel/samba/-/blob/master/source3/lib/netapi/localgroup.c ) This structure is transformed from struct cli_state *cli, into struct rpc_pipe_client *rpccli; you may call cli_rpc_pipe_open_noauth_transport to do that ( https://gitlab.com/samba-team/devel/samba/-/blob/master/examples/winexe/winexe.c#L458 ) cli_rpc_pipe_open_noauth_transport is not exported. maybe i should use cli_rpc_pipe_open_noauth which is closed, but exported. Also another example. Sometimes the cli api is called, sometimes the dcerpc one. Typical example here: https://gitlab.com/samba-team/devel/samba/-/blob/master/source3/l...
2020 Oct 13
0
Lookup sid with libsmbclient (invoked from c# on mono)
...er/source3/lib/netapi/localgroup.c > ) > This structure is transformed from struct cli_state *cli, into struct > rpc_pipe_client *rpccli; you may call cli_rpc_pipe_open_noauth_transport > to do that ( > https://gitlab.com/samba-team/devel/samba/-/blob/master/examples/winexe/winexe.c#L458 > ) > cli_rpc_pipe_open_noauth_transport is not exported. It is exported but you're not looking at the right shared lib. You can use ldd(1) to list all the libs rpcclient is linked against. $ ldd /usr/bin/rpcclient | perl -nE 'if(m{(/\S+)} && -f $1){system "nm -o -D...
2020 Oct 12
2
Lookup sid with libsmbclient (invoked from c# on mono)
Vincent Le Toux via samba <samba at lists.samba.org> writes: > Indeed, rpcclient is the program I looked for the first time. > > I cannot invoke it in a command line because I have at least 1000 SID to > resolve > (I discover them one by one so I'll have to run rpcclient at least 1000 > times) You can pass multiples SID at a time to these commands. But you would have