aboutsummaryrefslogtreecommitdiffstats
path: root/audio/afsp
ModeNameSize
-rw-r--r--Makefile822logstatsplainblame
-rw-r--r--distinfo58logstatsplainblame
d---------files36logstatsplain
-rw-r--r--pkg-comment32logstatsplainblame
-rw-r--r--pkg-descr1288logstatsplainblame
-rw-r--r--pkg-plist705logstatsplainblame
='insertions'>+2 | * mobile: correct comment typo in geth.go (#17021)Husam Ibrahim2018-06-191-1/+1 | * mobile: add GetStatus Method for Receipt (#16598)Erichin2018-05-071-0/+1 | * cmd/geth, mobile: add memsize to pprof server (#16532)Felix Lange2018-04-231-0/+11 | | | | | | | | * cmd/geth, mobile: add memsize to pprof server This is a temporary change, to be reverted before the next release. * cmd/geth: fix variable name * all: fix various typos (#16533)Wuxiang2018-04-191-8/+8 | | | | | | | | * fix typo * fix typo * fix typo * core/types: remove String methods from struct types (#16205)Steven Roose2018-04-051-24/+0 | | | | | | Most of these methods did not contain all the relevant information inside the object and were not using a similar formatting type. Moreover, the existence of a suboptimal String method breaks usage with more advanced data dumping tools like go-spew. * whisper: some components are still using v5, switch to v6Guillaume Ballet2018-03-221-1/+1 | * Merge pull request #15776 from ProChain/masterMartin Holst Swende2018-02-221-5/+13 |\ | | | | accounts/abi: Fix the bug of mobile framework crashing | * accounts/abi: fix the `output` at the beginning instead of making a workaroundcroath2018-01-231-5/+13 | | * | Merge pull request #15832 from karalabe/abigen-eventsPéter Szilágyi2018-01-242-6/+11 |\ \ | | | | | | accounts/abi/bind: support event filtering in abigen | * | accounts/abi/bind: support event filtering in abigenPéter Szilágyi2018-01-242-6/+11 | | | * | | p2p, p2p/discover, p2p/discv5: implement UDP port sharing (#15200)Felföldi Zsolt2018-01-221-1/+0 |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit affects p2p/discv5 "topic discovery" by running it on the same UDP port where the old discovery works. This is realized by giving an "unhandled" packet channel to the old v4 discovery packet handler where all invalid packets are sent. These packets are then processed by v5. v5 packets are always invalid when interpreted by v4 and vice versa. This is ensured by adding one to the first byte of the packet hash in v5 packets. DiscoveryV5Bootnodes is also changed to point to new bootnodes that are implementing the changed packet format with modified hash. Existing and new v5 bootnodes are both running on different ports ATM. * / all: switch gas limits from big.Int to uint64Péter Szilágyi2018-01-034-21/+20 |/ * mobile: Add GetSign to BigInt (#15558)Alejandro Isaza2017-12-101-0/+10 | * build: enable unconvert linter (#15456)ferhat elmas2017-11-111-1/+1 | | | | | | | | | * build: enable unconvert linter - fixes #15453 - update code base for failing cases * cmd/puppeth: replace syscall.Stdin with os.Stdin.Fd() for unconvert linter * mobile: fix FilterLogs (#15418)Eugene Valeyev2017-11-061-2/+2 | | | | All logs in the FilterLog return value would be the same object because the for loop captured the pointer to the iteration variable. * mobile: fix variadic argument expansionligi2017-10-061-1/+1 | * ethclient, mobile: add TransactionSender (#15127)Felix Lange2017-10-012-3/+13 | | | | | | | | | | | | | | | | | * core/types: make Signer derive address instead of public key There are two reasons to do this now: The upcoming ethclient signer doesn't know the public key, just the address. EIP 208 will introduce a new signer which derives the 'entry point' address for transactions with zero signature. The entry point has no public key. Other changes to the interface ease the path make to moving signature crypto out of core/types later. * ethclient, mobile: add TransactionSender The new method can get the right signer without any crypto, and without knowledge of the signature scheme that was used when the transaction was included. * mobile: add RinkebyGenesis methodam2rican52017-07-311-0/+9 | * mobile: don't retain transient []byte in CallMsg.SetData (#14804)Elias Naur2017-07-177-17/+21 | | | | | | | | | | | | | | | | | | | | | * mobile: don't retain transient []byte in CallMsg.SetData Go mobile doesn't copy []byte parameters, for performance and to allow writes to the byte array be reflected in the native byte array. Unfortunately, that means []byte arguments are only valid during the call it is being passed into. CallMsg.SetData retains such a byte array. Copy it instead Fixes #14675 * mobile: copy all []byte arguments from gomobile To avoid subtle errors when accidentially retaining an otherwise transient byte slice coming from gomobile, copy all byte slices before use. * mobile: replace copySlice with common.CopyBytes