Questions tagged [object-address]

21 questions
1
vote
0 answers

no heap allocated memory (kernel address)

I have a question when I located the address in kernel. I insert a hello module in kernel, in this module, I used this solution. For now I can use kmalloc to achieve the address by virt_to_phys. char *mystring = kmalloc(19,…
Alex
  • 869
  • 3
  • 13
  • 20
0
votes
3 answers

How to print String instead of address in Java?

My output is "[B@b42cbf" with no errors. It should be a string that says "Server Check". How do I fix my code to put out the string rather than the address? My code to print the object has been changed several times, but is now as…
Zeveso
  • 1,274
  • 3
  • 21
  • 41
0
votes
1 answer

How I can set address of WCF service from client's command line when using spring.net

My WCF service can work on any servers. My client - is console application. In command line parameters I want set address of my WCF service. Current in config client I have: ...
viko
  • 1
0
votes
1 answer

How to find the address belongs to the kernel

I need to find the address of kernel for a testing, I want to insert some code from the 1394 fireware to the kernel, but I don't know how to find the address belongs to the kernel? Thanks a lot
Alex
  • 869
  • 3
  • 13
  • 20
0
votes
3 answers

C# address Button using a string

I have a Problem with addressing a button. I have many buttons in my program and I have a function which is used by every button. I'm getting the name of the last clicked button with this: foreach (Control t in this.Controls) { if (t.Focused) …
Philipp Thi
  • 37
  • 2
  • 7
-4
votes
4 answers

Is there a Python module for handling Python object addresses?

(When I say "object address", I mean the string that you type in Python to access an object. For example 'life.State.step'. Most of the time, all the objects before the last dot will be packages/modules, but in some cases they can be classes or…
Ram Rachum
  • 84,019
  • 84
  • 236
  • 374
1
2